summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-09-21 07:47:48 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-09-21 07:47:48 +0000
commit5ca943d3981cc1e8a9e185975999b5a154331f7c (patch)
tree6de5675d128813fbbcb79ca43150711f8c445bf2 /src
parentcd2f4476f079f7b8c8e4a40ab42e28c32a0ab7b3 (diff)
slight fix to Makefile.inc so that gram.c/parse.h get put into
backend/obj instead of into backend there is probably a better fix for this, but looking at the Makefile.inc, I can't find a reason *why* it isn't putting them into obj...
Diffstat (limited to 'src')
-rw-r--r--src/backend/parser/Makefile.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/parser/Makefile.inc b/src/backend/parser/Makefile.inc
index df1962d15d9..b00ca9e364f 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.2.1 1996/09/21 06:06:49 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.2.2.2 1996/09/21 07:47:48 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -19,8 +19,8 @@ PARSEYACCS= gram.c
$(PARSEYACCS): gram.y
cd $(objdir)
$(YACC) $(YFLAGS) $<
- mv y.tab.c gram.c
- mv y.tab.h parse.h
+ mv y.tab.c $(objdir)/gram.c
+ mv y.tab.h $(objdir)/parse.h
$(objdir)/gram.o: gram.c
$(cc_inobjdir)