Skip to content

Commit 6661a8d

Browse files
committed
This patch stops the Postgres build from ignoring the fact that yacc
has failed to create gram.c. -- Bryan Henderson Phone 408-227-6803 San Jose, California
1 parent 741d323 commit 6661a8d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/parser/Makefile.inc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.2 1996/07/23 02:23:32 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.2.2.1 1996/09/21 06:06:49 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -17,9 +17,9 @@ VPATH:= $(VPATH):$(CURDIR)/parser
1717
PARSEYACCS= gram.c
1818

1919
$(PARSEYACCS): gram.y
20-
cd $(objdir); \
21-
$(YACC) $(YFLAGS) $<; \
22-
mv y.tab.c gram.c; \
20+
cd $(objdir)
21+
$(YACC) $(YFLAGS) $<
22+
mv y.tab.c gram.c
2323
mv y.tab.h parse.h
2424

2525
$(objdir)/gram.o: gram.c

0 commit comments

Comments
 (0)