summaryrefslogtreecommitdiffstats
path: root/gnu
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-04-04 01:25:26 +0000
committerobrien <obrien@FreeBSD.org>2002-04-04 01:25:26 +0000
commitaf123fcfc455c5d16b4bfe5b4a6c38c32a581348 (patch)
tree8f1d4722d898425cf4f04b389a011925a90cd830 /gnu
parent6dc270c501d56ffc60526f2af97d76db09f274ff (diff)
downloadFreeBSD-src-af123fcfc455c5d16b4bfe5b4a6c38c32a581348.zip
FreeBSD-src-af123fcfc455c5d16b4bfe5b4a6c38c32a581348.tar.gz
Make the sed line a little bit more clear (it will get messier later).
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/cc/cc1/Makefile3
-rw-r--r--gnu/usr.bin/cc/cc1obj/Makefile3
2 files changed, 4 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/cc1/Makefile b/gnu/usr.bin/cc/cc1/Makefile
index 3f25fbb..ff1bda0 100644
--- a/gnu/usr.bin/cc/cc1/Makefile
+++ b/gnu/usr.bin/cc/cc1/Makefile
@@ -22,7 +22,8 @@ LDADD+= ${LIBCC_INT}
.ORDER: c-parse.c c-parse.h
c-parse.c c-parse.h: c-parse.in
sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
- -e "/^ifc$$/d" -e "/^end ifc$$/d" \
+ -e "/^ifc$$/d" \
+ -e "/^end ifc$$/d" \
${.ALLSRC} > c-parse.y
${YACC} -d -o c-parse.c c-parse.y
diff --git a/gnu/usr.bin/cc/cc1obj/Makefile b/gnu/usr.bin/cc/cc1obj/Makefile
index 0ec2871..6f6e175 100644
--- a/gnu/usr.bin/cc/cc1obj/Makefile
+++ b/gnu/usr.bin/cc/cc1obj/Makefile
@@ -22,7 +22,8 @@ LDADD+= ${LIBCC_INT}
.ORDER: objc-parse.c c-parse.h
objc-parse.c c-parse.h: c-parse.in
sed -e "/^ifc$$/,/^end ifc$$/d" \
- -e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
+ -e "/^ifobjc$$/d" \
+ -e "/^end ifobjc$$/d" \
${.ALLSRC} > objc-parse.y
${YACC} -d -o objc-parse.c objc-parse.y
mv objc-parse.h c-parse.h
OpenPOWER on IntegriCloud