Support for DESTDIR make variable. This is used as in `make install
authorPeter Eisentraut <peter_e@gmx.net>
Sun, 17 Sep 2000 13:02:51 +0000 (13:02 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Sun, 17 Sep 2000 13:02:51 +0000 (13:02 +0000)
DESTDIR=/else/where' and prepends the value of DESTDIR to the full
installation paths (e.g., /else/where/usr/local/pgsql/bin). This allows
users to install the package into a location different from the one that
was configured and hard-coded into various scripts, e.g., for creating
binary packages.

DESTDIR is in many cases preferrable over `make install
prefix=/else/where' because

a) `prefix' affects the path that is hard-coded into the files, which can
lead to a `make install prefix=xxx' (as done by the regression test
driver) corrupting the files in the source tree with wrong paths.

b) it doesn't work at all if a directory was overridden to not depend on
`prefix', e.g., --sysconfdir=/etc.

(Updating the regression test driver to use DESTDIR is a separate
undertaking.)

See also autoconf@gnu.org, From: Akim Demaille <akim@epita.fr>, Date: 08
Sep 2000 12:48:59 +0200, Message-ID:
<mv4em2vb1lw.fsf@nostromo.lrde.epita.fr>, Subject: Re: HTML format
documentation.

GNUmakefile

index 7778404353616aa0264d7c6c41e4e13b35781763..4a8fe20d005e43fb0aca1314396aae3984aad926 100644 (file)
@@ -2,7 +2,7 @@
 #
 # GNUMakefile for psqlodbc (Postgres ODBC driver)
 #
-# $Header: /home/heikki/psqlodbc-cvs-copy/psqlodbc/Attic/GNUmakefile,v 1.2 2000/08/31 16:11:55 petere Exp $
+# $Header: /home/heikki/psqlodbc-cvs-copy/psqlodbc/Attic/GNUmakefile,v 1.3 2000/09/17 13:02:51 petere Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -38,18 +38,18 @@ odbc_includedir = $(includedir)/iodbc
 install: all installdirs install-headers install-ini install-lib
 
 installdirs:
-   $(mkinstalldirs) $(odbc_includedir) $(libdir) $(odbcinst_ini_dir)
+   $(mkinstalldirs) $(DESTDIR)$(odbc_includedir) $(DESTDIR)$(libdir) $(DESTDIR)$(odbcinst_ini_dir)
 
 .PHONY: install-headers
 install-headers: $(odbc_headers)
-   for i in $^; do $(INSTALL_DATA) $$i $(odbc_includedir) || exit 1; done
+   for i in $^; do $(INSTALL_DATA) $$i $(DESTDIR)$(odbc_includedir) || exit 1; done
 
 .PHONY: install-ini
 install-ini: odbcinst.ini
-   $(INSTALL_DATA) $< $(odbcinst_ini_dir)
+   $(INSTALL_DATA) $< $(DESTDIR)$(odbcinst_ini_dir)
 
 uninstall: uninstall-lib
-   rm -f $(addprefix $(odbc_includedir)/, $(odbc_headers))
+   rm -f $(addprefix $(DESTDIR)$(odbc_includedir)/, $(odbc_headers))
 
 clean distclean maintainer-clean: clean-lib
    rm -f $(OBJS)