summaryrefslogtreecommitdiffstats
path: root/rpm-pgsql.patch
diff options
context:
space:
mode:
authorTom Lane <tgl@fedoraproject.org>2005-01-19 05:02:11 +0000
committerTom Lane <tgl@fedoraproject.org>2005-01-19 05:02:11 +0000
commit6e96691327716b7fb6ea0b9a45fa9474bbc02493 (patch)
tree5618fb4be641ada3a56649bcd307397126735322 /rpm-pgsql.patch
parentcc192f6092626400720804e8b3321ab5967e6cfb (diff)
downloadpostgresql-setup-6e96691327716b7fb6ea0b9a45fa9474bbc02493.tar.gz
postgresql-setup-6e96691327716b7fb6ea0b9a45fa9474bbc02493.tar.xz
postgresql-setup-6e96691327716b7fb6ea0b9a45fa9474bbc02493.zip
Update to PostgreSQL 8.0.postgresql-8_0_0-1
Diffstat (limited to 'rpm-pgsql.patch')
-rw-r--r--rpm-pgsql.patch64
1 files changed, 64 insertions, 0 deletions
diff --git a/rpm-pgsql.patch b/rpm-pgsql.patch
new file mode 100644
index 0000000..87eff85
--- /dev/null
+++ b/rpm-pgsql.patch
@@ -0,0 +1,64 @@
+diff -Naur postgresql-8.0.0rc5.orig/src/Makefile.global.in postgresql-8.0.0rc5/src/Makefile.global.in
+--- postgresql-8.0.0rc5.orig/src/Makefile.global.in 2004-12-18 21:16:18.000000000 -0500
++++ postgresql-8.0.0rc5/src/Makefile.global.in 2005-01-11 16:06:30.570550658 -0500
+@@ -53,7 +53,7 @@
+ # Installation directories
+ #
+ # These are set by the equivalent --xxxdir configure options. We
+-# append "postgresql" to some of them, if the string does not already
++# append "pgsql" to some of them, if the string does not already
+ # contain "pgsql" or "postgres", in order to avoid directory clutter.
+
+ prefix := @prefix@
+@@ -65,21 +65,21 @@
+ libexecdir := @libexecdir@
+ ifeq "$(findstring pgsql, $(libexecdir))" ""
+ ifeq "$(findstring postgres, $(libexecdir))" ""
+-override libexecdir := $(libexecdir)/postgresql
++override libexecdir := $(libexecdir)/pgsql
+ endif
+ endif
+
+ datadir := @datadir@
+ ifeq "$(findstring pgsql, $(datadir))" ""
+ ifeq "$(findstring postgres, $(datadir))" ""
+-override datadir := $(datadir)/postgresql
++override datadir := $(datadir)/pgsql
+ endif
+ endif
+
+ sysconfdir := @sysconfdir@
+ ifeq "$(findstring pgsql, $(sysconfdir))" ""
+ ifeq "$(findstring postgres, $(sysconfdir))" ""
+-override sysconfdir := $(sysconfdir)/postgresql
++override sysconfdir := $(sysconfdir)/pgsql
+ endif
+ endif
+
+@@ -87,7 +87,7 @@
+ pkglibdir = $(libdir)
+ ifeq "$(findstring pgsql, $(pkglibdir))" ""
+ ifeq "$(findstring postgres, $(pkglibdir))" ""
+-override pkglibdir := $(pkglibdir)/postgresql
++override pkglibdir := $(pkglibdir)/pgsql
+ endif
+ endif
+
+@@ -95,7 +95,7 @@
+ pkgincludedir = $(includedir)
+ ifeq "$(findstring pgsql, $(pkgincludedir))" ""
+ ifeq "$(findstring postgres, $(pkgincludedir))" ""
+-override pkgincludedir := $(pkgincludedir)/postgresql
++override pkgincludedir := $(pkgincludedir)/pgsql
+ endif
+ endif
+ includedir_server = $(pkgincludedir)/server
+@@ -109,7 +109,7 @@
+ ifneq (,$(docdir))
+ ifeq "$(findstring pgsql, $(docdir))" ""
+ ifeq "$(findstring postgres, $(docdir))" ""
+-override docdir := $(docdir)/postgresql
++override docdir := $(docdir)/pgsql
+ endif
+ endif
+ endif