diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2012-06-28 20:05:36 +0300 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2012-06-28 20:07:02 +0300 |
| commit | dcd5af6c3498a265053aa3292d41c3946e225627 (patch) | |
| tree | 667594d6367b999a95806567404870df36d06a1a /configure.in | |
| parent | 39715af23ae459684963c350dd69eafa2d502e7e (diff) | |
| download | postgresql-dcd5af6c3498a265053aa3292d41c3946e225627.tar.gz | |
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.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 5e5318b9b7..05e6324e8f 100644 --- a/configure.in +++ b/configure.in @@ -814,10 +814,10 @@ AC_PROG_INSTALL # 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 -AC_SUBST(INSTALL_) +AC_SUBST(install_bin) AC_PATH_PROG(TAR, tar) AC_PROG_LN_S |
