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/atm/scspd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/atm/scspd') diff --git a/usr.sbin/atm/scspd/Makefile b/usr.sbin/atm/scspd/Makefile index edea748..63eab50 100644 --- a/usr.sbin/atm/scspd/Makefile +++ b/usr.sbin/atm/scspd/Makefile @@ -35,7 +35,7 @@ SRCS= scspd.c scsp_cafsm.c scsp_config.c scsp_config_lex.c \ scsp_timer.c MAN8= scspd.8 -CFLAGS+= -I${.CURDIR}/../../../sys -I${.OBJDIR} +CFLAGS+= -I${.CURDIR}/../../../sys -I${.CURDIR} -I${.OBJDIR} LDADD+= -latm -lmd DPADD+= ${LIBATM} ${LIBMD} -- cgit v1.1