From 8b0e153855faa5855b9808c1f08d481fcd143163 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 17 Sep 2000 13:02:51 +0000 Subject: [PATCH] Support for DESTDIR make variable. This is used as in `make install 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 , Date: 08 Sep 2000 12:48:59 +0200, Message-ID: , Subject: Re: HTML format documentation. --- GNUmakefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 7778404..4a8fe20 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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) -- 2.39.5