aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-28 02:13:10 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-28 02:13:10 +0000
commitf634c14c9e78a060e2faeead70e5b8027252bf96 (patch)
tree899e617e73c6e251b9ba23f9f33dcafc2e1e7626 /src
parent105409746499657acdffc109db9d343b464bda1f (diff)
downloadpostgresql-f634c14c9e78a060e2faeead70e5b8027252bf96.tar.gz
postgresql-f634c14c9e78a060e2faeead70e5b8027252bf96.zip
Path to pg_proc.h to create fmgrtab.c change to include/catalog
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/Makefile.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/Makefile.inc b/src/backend/utils/Makefile.inc
index 47179a67f51..e74e35084a4 100644
--- a/src/backend/utils/Makefile.inc
+++ b/src/backend/utils/Makefile.inc
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Makefile.inc,v 1.1.1.1 1996/07/09 06:22:01 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Makefile.inc,v 1.2 1996/08/28 02:13:10 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -39,9 +39,9 @@ GENFMGRTABFILES= fmgrtab.c
# get slurped in prior to this Makefile.inc, or BKIOPTS should be set
# in a higher directory level.
#
-$(GENFMGRTABFILES): $(GENFMGRTAB) $(catdir)/pg_proc.h
+$(GENFMGRTABFILES): $(GENFMGRTAB) ../../include/catalog/pg_proc.h
cd $(objdir); \
- sh $(SHOPTS) $(GENFMGRTAB) $(BKIOPTS) $(catdir)/pg_proc.h
+ sh $(SHOPTS) $(GENFMGRTAB) $(BKIOPTS) ../../include/catalog/pg_proc.h
$(objdir)/fmgrtab.o: fmgrtab.c
$(cc_inobjdir)