From cafb2a0daa952ef4a9f04e3ba3e8ab940a51ee68 Mon Sep 17 00:00:00 2001 From: obrien Date: Fri, 1 Dec 2000 09:39:28 +0000 Subject: The GCC 2.96 snapshots have slightly different rules for finding include files. Mostly -I${.CURDIR} was needed -- especially for YACC generated files as the new cpp does not look in the ultimate source file (ie, the .y file)'s directory as told by the "#line" directive. Some were misspellings of "-I${.CURDIR}" as "-I.". --- sbin/setkey/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sbin') diff --git a/sbin/setkey/Makefile b/sbin/setkey/Makefile index 8feb0a6..3caf739 100644 --- a/sbin/setkey/Makefile +++ b/sbin/setkey/Makefile @@ -29,7 +29,7 @@ PROG= setkey SRCS= setkey.c parse.y token.l CFLAGS+=-g -CFLAGS+=-I${.CURDIR}/../../lib/libipsec +CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../lib/libipsec DPADD= ${LIBL} ${LIBY} LDADD= -ll -ly CLEANFILES+= y.tab.c y.tab.h key_test.o keytest -- cgit v1.1