Call me silly, but I think it would be a good idea if initdb and other
scripts are executable after being installed. Latest changes got the permissions wrong (non executable).
This commit is contained in:
parent
1aebc3618a
commit
f0b0016ecb
@ -631,6 +631,7 @@ AC_PROG_INSTALL
|
||||
|
||||
INSTLOPTS="-m 444"
|
||||
INSTL_EXE_OPTS="-m 555"
|
||||
INSTL_SCRIPT_OPTS="-m 755"
|
||||
INSTL_LIB_OPTS="-m 644"
|
||||
INSTL_SHLIB_OPTS="-m 644"
|
||||
|
||||
@ -639,11 +640,16 @@ case "$host_os" in
|
||||
hpux*)
|
||||
INSTL_SHLIB_OPTS="-m 555" ;;
|
||||
esac
|
||||
|
||||
AC_SUBST(INSTLOPTS)
|
||||
AC_SUBST(INSTL_LIB_OPTS)
|
||||
AC_SUBST(INSTL_SHLIB_OPTS)
|
||||
AC_SUBST(INSTL_EXE_OPTS)
|
||||
|
||||
dnl Fix autoconf's brain-dead defaults for script and shlib installs.
|
||||
|
||||
INSTALL_SCRIPT="\${INSTALL} $INSTL_SCRIPT_OPTS"
|
||||
AC_SUBST(INSTALL_SCRIPT)
|
||||
|
||||
INSTALL_SHLIB="\${INSTALL} $INSTL_SHLIB_OPTS"
|
||||
AC_SUBST(INSTALL_SHLIB)
|
||||
|
Loading…
x
Reference in New Issue
Block a user