aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-01-13 20:37:18 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-01-13 20:37:18 +0000
commit1e9f85b9f6daba0f1b7e8feea8f846a368d972d5 (patch)
tree4c6c967a0e0011ddc4aad5c4f0e052206dcfe90e /src
parent56e1aab286ac841ac9404fc6b1c4f112259b6302 (diff)
downloadpostgresql-1e9f85b9f6daba0f1b7e8feea8f846a368d972d5.tar.gz
postgresql-1e9f85b9f6daba0f1b7e8feea8f846a368d972d5.zip
Fix information_schema.sql install to work when building outside
source tree.
Diffstat (limited to 'src')
-rw-r--r--src/backend/catalog/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/catalog/Makefile b/src/backend/catalog/Makefile
index eb6201d5481..32570ed128a 100644
--- a/src/backend/catalog/Makefile
+++ b/src/backend/catalog/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for backend/catalog
#
-# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.43 2002/12/14 00:24:24 petere Exp $
+# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.44 2003/01/13 20:37:18 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -45,7 +45,7 @@ postgres.bki postgres.description: genbki.sh $(POSTGRES_BKI_SRCS) \
install-data: $(BKIFILES) installdirs
$(INSTALL_DATA) postgres.bki $(DESTDIR)$(datadir)/postgres.bki
$(INSTALL_DATA) postgres.description $(DESTDIR)$(datadir)/postgres.description
- $(INSTALL_DATA) information_schema.sql $(DESTDIR)$(datadir)/information_schema.sql
+ $(INSTALL_DATA) $(srcdir)/information_schema.sql $(DESTDIR)$(datadir)/information_schema.sql
installdirs:
$(mkinstalldirs) $(DESTDIR)$(datadir)