diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-21 20:56:50 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-21 20:56:50 +0000 |
commit | 13f96c4b6bc59f25ce430ad987cd0881284b6e76 (patch) | |
tree | ac3c6779e95afe538db77c552942e1f7c6651231 /src/backend | |
parent | 748a15a8ea98fc80fc7cebf523246910109c1eae (diff) | |
download | postgresql-13f96c4b6bc59f25ce430ad987cd0881284b6e76.tar.gz postgresql-13f96c4b6bc59f25ce430ad987cd0881284b6e76.zip |
Put path configuration information into a .h file instead of cluttering
several different module Makefiles with it. Also, do any adjustment
of installation paths during configure, rather than every time Makefile.global
is read.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/utils/fmgr/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/utils/fmgr/Makefile b/src/backend/utils/fmgr/Makefile index 37b6d03e23f..6fcd0d1a15c 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.16 2004/05/17 14:35:31 momjian Exp $ +# $PostgreSQL: pgsql/src/backend/utils/fmgr/Makefile,v 1.17 2004/05/21 20:56:49 tgl Exp $ # #------------------------------------------------------------------------- @@ -24,7 +24,3 @@ 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 |