1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-10 14:22:35 +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

2
src/configure vendored
View File

@@ -1407,7 +1407,7 @@ case "$host_os" in
esac
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"