mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 01:59:38 -04:00
Change -I$(.CURDIR) to -I. in CFLAGS. As Bruce pointed out
$(...) is bad style and without -I. this program would not
compile unless ${.OBJDIR} == ${.CURDIR}.
Submitted by: bde
This commit is contained in:
parent
206e5b7e27
commit
e2a59009ba
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ BCSRCS= execute.c global.c load.c main.c number.c storage.c util.c
|
|||
GENSRCS= bc.c scan.c
|
||||
SRCS= ${GENSRCS} ${BCSRCS}
|
||||
|
||||
CFLAGS+= -D_POSIX_SOURCE -I$(.CURDIR)
|
||||
CFLAGS+= -D_POSIX_SOURCE -I.
|
||||
CLEANFILES+= ${GENSRCS} y.tab.h
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue