1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-05 23:38:41 +03:00

Our 'install-sh' script is BSD-style, therefore requires -c

to behave sanely.  configure was not treating it as BSD...
This commit is contained in:
Tom Lane
1998-10-04 18:28:10 +00:00
parent 10d987c709
commit 3512284bda
2 changed files with 4 additions and 2 deletions

View File

@@ -373,8 +373,10 @@ case "$host_os" in
INSTL_SHLIB_OPTS="-m 555" ;;
esac
dnl These flavors of install need -c to install by copy rather than move.
dnl install by move is fatal because it removes stuff from the source tree!
case "`basename $INSTALL`" in
install|installbsd|scoinst)
install|installbsd|scoinst|install-sh)
INSTLOPTS="-c $INSTLOPTS"
INSTL_EXE_OPTS="-c $INSTL_EXE_OPTS"
INSTL_LIB_OPTS="-c $INSTL_LIB_OPTS"