Commit f0b0016e authored by Tom Lane's avatar Tom Lane

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).
parent 1aebc361
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment