diff options
author | bde <bde@FreeBSD.org> | 1996-10-25 15:50:17 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-10-25 15:50:17 +0000 |
commit | 288ed20d53efc819b1678cb7db1949046363c66f (patch) | |
tree | c868a55ad7071c2ad358d2176c37dc2e61aee1a4 /usr.bin/f2c | |
parent | 104718bd5b54b0538d55e0e075403d88e1f458e8 (diff) | |
download | FreeBSD-src-288ed20d53efc819b1678cb7db1949046363c66f.zip FreeBSD-src-288ed20d53efc819b1678cb7db1949046363c66f.tar.gz |
Use the same format for the "expect N shift reduce conflicts" message
as in the one other place in /usr/src that prints such an "expect"
message (amd).
Diffstat (limited to 'usr.bin/f2c')
-rw-r--r-- | usr.bin/f2c/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/f2c/Makefile b/usr.bin/f2c/Makefile index 1a699d2..276faca 100644 --- a/usr.bin/f2c/Makefile +++ b/usr.bin/f2c/Makefile @@ -18,7 +18,7 @@ gram.c: ${GRAMFILES} ${.CURDIR}/defs.h tokdefs.h (sed < tokdefs.h "s/#define/%token/" ; \ cat ${GRAMFILES}) > gram.in $(YACC) $(YFLAGS) gram.in - echo "(expect 4 shift/reduce)" + echo "# expect 4 shift/reduce conflicts" sed 's/^# line.*/\/* & *\//' y.tab.c >gram.c rm -f gram.in y.tab.c |