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.". --- usr.sbin/rrenumd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/rrenumd') diff --git a/usr.sbin/rrenumd/Makefile b/usr.sbin/rrenumd/Makefile index 42a0195..c459656 100644 --- a/usr.sbin/rrenumd/Makefile +++ b/usr.sbin/rrenumd/Makefile @@ -17,7 +17,7 @@ PROG= rrenumd SRCS= rrenumd.c parser.y lexer.l YFLAGS+= -d -CFLAGS+= -DINET6 -DIPSEC -I${.OBJDIR} +CFLAGS+= -DINET6 -DIPSEC -I${.CURDIR} -I${.OBJDIR} LDADD= -lipsec -lcompat -ll -ly DPADD= ${LIBIPSEC} ${LIBCOMPAT} ${LIBL} ${LIBY} -- cgit v1.1