diff options
author | Thomas Jahns <jahns@dkrz.de> | 2014-08-07 11:03:06 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2014-12-17 18:03:34 +0100 |
commit | 3f9fc60baa2e7f9324e17a26f592e92148b7117c (patch) | |
tree | bba30f87e0cd36d0b0f8203893c29ecc14a38ff2 | |
parent | 5825771062a8823cd08e8547655f4c5cdf9b94bb (diff) | |
download | automake-3f9fc60baa2e7f9324e17a26f592e92148b7117c.tar.gz |
Fix dumb logic error preventing $install_sh from being be overridden
* m4/install-sh.m4: Here.
* THANKS: Update.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | m4/install-sh.m4 | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -393,6 +393,7 @@ Theodoros V. Kalamatianos thkala@gmail.com Thien-Thi Nguyen ttn@glug.org Thomas Fitzsimmons fitzsim@redhat.com Thomas Gagne tgagne@ix.netcom.com +Thomas Jahns jahns@dkrz.de Thomas Klausner tk@giga.or.at Thomas Morgan tmorgan@pobox.com Thomas Schwinge tschwinge@gnu.org diff --git a/m4/install-sh.m4 b/m4/install-sh.m4 index 094c10a85..16a3d9c33 100644 --- a/m4/install-sh.m4 +++ b/m4/install-sh.m4 @@ -10,7 +10,7 @@ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -if test x"${install_sh}" != xset; then +if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; |