]> git.pld-linux.org Git - packages/postgresql.git/blame - postgresql-DESTDIR.patch
- release++
[packages/postgresql.git] / postgresql-DESTDIR.patch
CommitLineData
bd2eb624
AF
1diff -ur postgresql-6.4.2.old/src/Makefile.global.in postgresql-6.4.2/src/Makefile.global.in
2--- postgresql-6.4.2.old/src/Makefile.global.in Wed Jun 30 10:43:20 1999
3+++ postgresql-6.4.2/src/Makefile.global.in Wed Jun 30 10:42:13 1999
4@@ -62,13 +62,13 @@
5
6 # Where the postgres executables live (changeable by just putting them
7 # somewhere else and putting that directory in your shell PATH)
8-BINDIR= $(POSTGRESDIR)/bin
9+BINDIR= $(DESTDIR)$(POSTGRESDIR)/bin
10
11 # Where libpq.a gets installed. You must put it where your loader will
12 # look for it if you wish to use the -lpq convention. Otherwise you
13 # can just put the absolute pathname to the library at the end of your
14 # command line.
15-LIBDIR= $(POSTGRESDIR)/lib
16+LIBDIR= $(DESTDIR)$(POSTGRESDIR)/lib
17
18 # This is the directory where IPC utilities ipcs and ipcrm are located
19 #
20@@ -76,18 +76,18 @@
21 IPCRM=@ipcrm@
22
23 # Where the man pages (suitable for use with "man") get installed.
24-POSTMANDIR= $(POSTGRESDIR)/man
25+POSTMANDIR= $(DESTDIR)@mandir@
26
27 # Where the formatted documents (e.g., the reference manual) get installed.
28-POSTDOCDIR= $(POSTGRESDIR)/doc
29+POSTDOCDIR= $(DESTDIR)$(POSTGRESDIR)/doc
30
31 # Where the header files necessary to build frontend programs get installed.
32-HEADERDIR= $(POSTGRESDIR)/include
33+HEADERDIR= $(DESTDIR)$(POSTGRESDIR)/include
34
35 # Where the ODBC installation-wide configuration file gets installed.
36 # This needs to be a client-side readable area, so can't go in $PGDATA.
37 # - thomas 1998-10-05
38-ODBCINST= $(POSTGRESDIR)
39+ODBCINST= $(DESTDIR)$(POSTGRESDIR)
40
41 ##############################################################################
42 #
This page took 0.197223 seconds and 4 git commands to generate.