diff options
author | brooks <brooks@FreeBSD.org> | 2012-08-28 14:20:41 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2012-08-28 14:20:41 +0000 |
commit | f04a49628e176be6b1453b7d1d4a6d7b880ee64f (patch) | |
tree | 2426ea6d36db02d399ba886b2036282454ee533c /sbin | |
parent | 06cefb977a9fa4c32e2bd8e3d9c27fe781d4e624 (diff) | |
download | FreeBSD-src-f04a49628e176be6b1453b7d1d4a6d7b880ee64f.zip FreeBSD-src-f04a49628e176be6b1453b7d1d4a6d7b880ee64f.tar.gz |
Don't overwrite the global default CFLAGS when setting include paths.
MFC after: 3 days
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/gvinum/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/gvinum/Makefile b/sbin/gvinum/Makefile index 8cccf56..c9716e9 100644 --- a/sbin/gvinum/Makefile +++ b/sbin/gvinum/Makefile @@ -5,7 +5,7 @@ SRCS= gvinum.c gvinum.h geom_vinum_share.c 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 |