aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-12-23 21:56:21 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-12-23 21:56:21 +0000
commitcd2ad9b944fb236557bfe85999ac56857e0f22cd (patch)
tree415bbcd26fa32e432bb67688e5097b8135806f17 /src/backend/utils
parent358d032f9855cfa95a5de174c0bf052097e649f0 (diff)
downloadpostgresql-cd2ad9b944fb236557bfe85999ac56857e0f22cd.tar.gz
postgresql-cd2ad9b944fb236557bfe85999ac56857e0f22cd.zip
Fix a number of places where reconfiguring with a different installation
prefix would fail, because the new path did not get propagated to where it needed to be. Note this would fail even with --enable-depend.
Diffstat (limited to 'src/backend/utils')
-rw-r--r--src/backend/utils/fmgr/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/backend/utils/fmgr/Makefile b/src/backend/utils/fmgr/Makefile
index 6ea81807112..000b17a21d5 100644
--- a/src/backend/utils/fmgr/Makefile
+++ b/src/backend/utils/fmgr/Makefile
@@ -4,7 +4,7 @@
# Makefile for utils/fmgr
#
# IDENTIFICATION
-# $PostgreSQL: pgsql/src/backend/utils/fmgr/Makefile,v 1.14 2003/11/29 19:52:01 pgsql Exp $
+# $PostgreSQL: pgsql/src/backend/utils/fmgr/Makefile,v 1.15 2003/12/23 21:56:20 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -24,3 +24,7 @@ SUBSYS.o: $(OBJS)
clean:
rm -f SUBSYS.o $(OBJS)
+
+
+# ensure that changes in PKGLIBDIR propagate to dfmgr.o
+dfmgr.o: dfmgr.c $(top_builddir)/src/Makefile.global