mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Further fix install program detection
The $(or) make function was introduced in GNU make 3.81, so the previous coding didn't work in 3.80. Write it differently, and improve the variable naming to make more sense in the new coding.
This commit is contained in:
6
configure
vendored
6
configure
vendored
@ -693,7 +693,7 @@ MKDIR_P
|
||||
AWK
|
||||
LN_S
|
||||
TAR
|
||||
INSTALL_
|
||||
install_bin
|
||||
INSTALL_DATA
|
||||
INSTALL_SCRIPT
|
||||
INSTALL_PROGRAM
|
||||
@ -6956,8 +6956,8 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
||||
# a relative path to it in each makefile where it subsitutes it. This clashes
|
||||
# with our Makefile.global concept. This workaround helps.
|
||||
case $INSTALL in
|
||||
*install-sh*) INSTALL_='';;
|
||||
*) INSTALL_=$INSTALL;;
|
||||
*install-sh*) install_bin='';;
|
||||
*) install_bin=$INSTALL;;
|
||||
esac
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user