[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Improve AC_CONFIG_AUX_DIRS a bit.
From: |
Ralf Wildenhues |
Subject: |
Improve AC_CONFIG_AUX_DIRS a bit. |
Date: |
Sat, 13 Sep 2008 09:29:04 +0200 |
User-agent: |
Mutt/1.5.18 (2008-05-17) |
OK?
Thanks,
Ralf
2008-09-13 Ralf Wildenhues <address@hidden>
* lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Improve a bit.
diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4
index de61bc8..a8437b6 100644
--- a/lib/autoconf/general.m4
+++ b/lib/autoconf/general.m4
@@ -1650,22 +1650,16 @@ AC_DEFUN([AC_CONFIG_AUX_DIR_DEFAULT],
AC_DEFUN([AC_CONFIG_AUX_DIRS],
[ac_aux_dir=
for ac_dir in $1; do
- if test -f "$ac_dir/install-sh"; then
- ac_aux_dir=$ac_dir
- ac_install_sh="$ac_aux_dir/install-sh -c"
- break
- elif test -f "$ac_dir/install.sh"; then
- ac_aux_dir=$ac_dir
- ac_install_sh="$ac_aux_dir/install.sh -c"
- break
- elif test -f "$ac_dir/shtool"; then
- ac_aux_dir=$ac_dir
- ac_install_sh="$ac_aux_dir/shtool install -c"
- break
- fi
+ for ac_t in install-sh install.sh shtool; do
+ if test -f "$ac_dir/$ac_t"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/$ac_t -c"
+ break 2
+ fi
+ done
done
if test -z "$ac_aux_dir"; then
- AC_MSG_ERROR([cannot find install-sh or install.sh in $1])
+ AC_MSG_ERROR([cannot find install-sh, install.sh, or shtool in $1])
fi
# These three variables are undocumented and unsupported,
- Improve AC_CONFIG_AUX_DIRS a bit.,
Ralf Wildenhues <=