diff options
author | jhb <jhb@FreeBSD.org> | 2002-01-08 11:08:20 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2002-01-08 11:08:20 +0000 |
commit | a7132b44c48e0bc6ba09205a6235e49553ce110f (patch) | |
tree | 50f0d9d028fda8abff0732426eaf55b687e78ac9 /usr.bin/colldef | |
parent | ea9c5a8d4c59a02cf0cf32205c2b86de18bbfe9d (diff) | |
download | FreeBSD-src-a7132b44c48e0bc6ba09205a6235e49553ce110f.zip FreeBSD-src-a7132b44c48e0bc6ba09205a6235e49553ce110f.tar.gz |
Replace -I${.OBJDIR} with -I. and split the CFLAGS line up into two lines.
Requested by: bde
Diffstat (limited to 'usr.bin/colldef')
-rw-r--r-- | usr.bin/colldef/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/colldef/Makefile b/usr.bin/colldef/Makefile index b543a25..d200567 100644 --- a/usr.bin/colldef/Makefile +++ b/usr.bin/colldef/Makefile @@ -5,7 +5,8 @@ SRCS= parse.y scan.l y.tab.h WARNS?= 2 NO_WERROR=yes LFLAGS= -8 -i -CFLAGS+=-I${.OBJDIR} -I${.CURDIR} -I${.CURDIR}/../../lib/libc/locale -DCOLLATE_DEBUG -DYY_NO_UNPUT +CFLAGS+=-I. -I${.CURDIR} -I${.CURDIR}/../../lib/libc/locale +CFLAGS+=-DCOLLATE_DEBUG -DYY_NO_UNPUT LDADD= -ll DPADD= ${LIBL} |