]> granicus.if.org Git - postgresql/commitdiff
This patch stops the Postgres build from ignoring the fact that yacc
authorMarc G. Fournier <scrappy@hub.org>
Sat, 21 Sep 1996 06:06:49 +0000 (06:06 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 21 Sep 1996 06:06:49 +0000 (06:06 +0000)
has failed to create gram.c.

--
Bryan Henderson                                    Phone 408-227-6803
San Jose, California

src/backend/parser/Makefile.inc

index e5390dd891ed83641ed3d5a0a8fef9eadee25a38..df1962d15d9453d05f498f834bdd7a96023d3be5 100644 (file)
@@ -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