From: Marc G. Fournier Date: Sat, 21 Sep 1996 06:06:49 +0000 (+0000) Subject: This patch stops the Postgres build from ignoring the fact that yacc X-Git-Tag: PG95-1_08~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6661a8dd1c1d322462270460ca61805db243b306;p=postgresql 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 --- diff --git a/src/backend/parser/Makefile.inc b/src/backend/parser/Makefile.inc index e5390dd891..df1962d15d 100644 --- a/src/backend/parser/Makefile.inc +++ b/src/backend/parser/Makefile.inc @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.2 1996/07/23 02:23:32 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.2.2.1 1996/09/21 06:06:49 scrappy Exp $ # #------------------------------------------------------------------------- @@ -17,9 +17,9 @@ VPATH:= $(VPATH):$(CURDIR)/parser PARSEYACCS= gram.c $(PARSEYACCS): gram.y - cd $(objdir); \ - $(YACC) $(YFLAGS) $<; \ - mv y.tab.c gram.c; \ + cd $(objdir) + $(YACC) $(YFLAGS) $< + mv y.tab.c gram.c mv y.tab.h parse.h $(objdir)/gram.o: gram.c