From b9b736e42259c35e29df5dbe95f2c7e0eb1b908e Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 8 May 2002 02:46:10 +0000 Subject: [PATCH] Using ${.ALLSRC} here is dangerious as it sometimes picks up more "sources" than desired. --- gnu/usr.bin/cc/cpp0/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/usr.bin/cc/cpp0/Makefile b/gnu/usr.bin/cc/cpp0/Makefile index 7a962b68816..15f5d327d28 100644 --- a/gnu/usr.bin/cc/cpp0/Makefile +++ b/gnu/usr.bin/cc/cpp0/Makefile @@ -21,7 +21,7 @@ c-parse.c: c-parse.in sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \ -e "/^ifc$$/d" \ -e "/^end ifc$$/d" \ - ${.ALLSRC} > c-parse.y + ${GCCDIR}/c-parse.in > c-parse.y ${YACC} -o c-parse.c.in c-parse.y sed -e "s/malloc/xmalloc/g" \ -e "s/realloc/xrealloc/g" \