diff options
author | ache <ache@FreeBSD.org> | 1998-04-30 07:50:49 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-04-30 07:50:49 +0000 |
commit | ffa68fade6abd88926b7e8183c4300dfd6a48ca6 (patch) | |
tree | 8133562658c2e125f9bdec7932fb47c02e2808ff /gnu/usr.bin/bc | |
parent | ff6b56dce1f6bb2a9a2abb85e17615af33850b1e (diff) | |
download | FreeBSD-src-ffa68fade6abd88926b7e8183c4300dfd6a48ca6.zip FreeBSD-src-ffa68fade6abd88926b7e8183c4300dfd6a48ca6.tar.gz |
Fix make - use -I${.CURDIR} instead of -I.
Diffstat (limited to 'gnu/usr.bin/bc')
-rw-r--r-- | gnu/usr.bin/bc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/bc/Makefile b/gnu/usr.bin/bc/Makefile index 7c0557c..cb86035 100644 --- a/gnu/usr.bin/bc/Makefile +++ b/gnu/usr.bin/bc/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.6 1998/04/29 22:05:23 andreas Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -18,7 +18,7 @@ YACC= bison -y CFLAGS+= -DHAVE_VPRINTF=1 -DSTDC_HEADERS=1 -DHAVE_ISGRAPH=1 \ -DHAVE_LIMITS_H=1 -DHAVE_STDARG_H=1 -DHAVE_STDDEF_H=1 \ -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_UNISTD_H=1 \ - -I${.CURDIR}/../../../contrib/bc/h -I. + -I${.CURDIR}/../../../contrib/bc/h -I${.CURDIR} CLEANFILES+= ${GENSRCS} y.tab.h |