svn commit: r239781 - head/sbin/gvinum

Brooks Davis brooks at FreeBSD.org
Tue Aug 28 14:20:42 UTC 2012


Author: brooks
Date: Tue Aug 28 14:20:41 2012
New Revision: 239781
URL: http://svn.freebsd.org/changeset/base/239781

Log:
  Don't overwrite the global default CFLAGS when setting include paths.
  
  MFC after:	3 days

Modified:
  head/sbin/gvinum/Makefile

Modified: head/sbin/gvinum/Makefile
==============================================================================
--- head/sbin/gvinum/Makefile	Tue Aug 28 14:19:10 2012	(r239780)
+++ head/sbin/gvinum/Makefile	Tue Aug 28 14:20:41 2012	(r239781)
@@ -5,7 +5,7 @@ SRCS=	gvinum.c gvinum.h geom_vinum_share
 MAN=	gvinum.8
 
 WARNS?=	2
-CFLAGS=	-I${.CURDIR}/../../sys -I${DESTDIR}/${INCLUDEDIR}/edit
+CFLAGS+=	-I${.CURDIR}/../../sys -I${DESTDIR}/${INCLUDEDIR}/edit
 
 DPADD=	${LIBEDIT} ${LIBTERMCAP} ${LIBDEVSTAT} ${LIBKVM} ${LIBGEOM}
 LDADD=	-ledit -ltermcap -ldevstat -lkvm -lgeom


More information about the svn-src-all mailing list