From a4e5fd57aca6e93b8f455a129ed62b33e97927d1 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 8 Jan 2002 11:08:20 +0000 Subject: [PATCH] Replace -I${.OBJDIR} with -I. and split the CFLAGS line up into two lines. Requested by: bde --- usr.bin/colldef/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.bin/colldef/Makefile b/usr.bin/colldef/Makefile index b543a255d07..d200567f685 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}