diff options
| author | Peter Eisentraut | 2001-03-10 10:38:59 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2001-03-10 10:38:59 +0000 |
| commit | a3176dac22c4cd14971e35119e245abee7649cb9 (patch) | |
| tree | ae9ec5c4c610da6b8a3e0430a026caf7a047819a /src | |
| parent | 2cfc8fcb5d48ac8f5d82e078f59f25ec4dc7de09 (diff) | |
Use install-sh unconditionally.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.global.in | 14 | ||||
| -rw-r--r-- | src/makefiles/Makefile.hpux | 2 |
2 files changed, 10 insertions, 6 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 955348fbc25..007857eaf73 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.122 2001/03/05 09:39:51 peter Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.123 2001/03/10 10:38:59 petere Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -185,12 +185,14 @@ WISH = @WISH@ # Installation. -INSTALL = @INSTALL@ +INSTALL = $(SHELL) $(top_srcdir)/config/install-sh -c -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SHLIB = @INSTALL_SHLIB@ +INSTALL_PROGRAM = $(INSTALL) +INSTALL_SCRIPT = $(INSTALL) -m 755 +INSTALL_DATA = $(INSTALL) -m 644 +INSTALL_SHLIB = $(INSTALL) $(INSTALL_SHLIB_OPTS) +# Override in Makefile.port if necessary +INSTALL_SHLIB_OPTS = -m 755 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs missing = $(SHELL) $(top_srcdir)/config/missing diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux index f76874932e5..bfde5995fd0 100644 --- a/src/makefiles/Makefile.hpux +++ b/src/makefiles/Makefile.hpux @@ -30,6 +30,8 @@ LDFLAGS += -Wl,-z export_dynamic = -Wl,-E +INSTALL_SHLIB_OPTS = -m 555 + AROPT = crs DLSUFFIX = .sl |
