mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-18 10:45:15 +08:00
* acgeneral.m4 (AC_CHECK_TOOL): Set VARIABLE also when using the
cache. From Jim Meyering. (AC_PATH_TOOL): Likewise.
This commit is contained in:
parent
03bbc0e52b
commit
c27f9181bd
@ -1,3 +1,9 @@
|
||||
2000-10-29 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* acgeneral.m4 (AC_CHECK_TOOL): Set VARIABLE also when using the
|
||||
cache. From Jim Meyering.
|
||||
(AC_PATH_TOOL): Likewise.
|
||||
|
||||
2000-10-29 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* tests/atgeneral.m4 (AT_CHECK): Warn if the expected exit status
|
||||
|
@ -3112,6 +3112,8 @@ if test -z "$ac_cv_path_$1"; then
|
||||
ac_pt_$1=$$1
|
||||
AC_PATH_PROG([ac_pt_$1], [$2], [$3], [$4])
|
||||
$1=$ac_pt_$1
|
||||
else
|
||||
$1="$ac_cv_path_$1"
|
||||
fi
|
||||
])# AC_PATH_TOOL
|
||||
|
||||
@ -3127,6 +3129,8 @@ if test -z "$ac_cv_prog_$1"; then
|
||||
ac_ct_$1=$$1
|
||||
AC_CHECK_PROG([ac_ct_$1], [$2], [$2], [$3], [$4])
|
||||
$1=$ac_ct_$1
|
||||
else
|
||||
$1="$ac_cv_prog_$1"
|
||||
fi
|
||||
])# AC_CHECK_TOOL
|
||||
|
||||
|
@ -3112,6 +3112,8 @@ if test -z "$ac_cv_path_$1"; then
|
||||
ac_pt_$1=$$1
|
||||
AC_PATH_PROG([ac_pt_$1], [$2], [$3], [$4])
|
||||
$1=$ac_pt_$1
|
||||
else
|
||||
$1="$ac_cv_path_$1"
|
||||
fi
|
||||
])# AC_PATH_TOOL
|
||||
|
||||
@ -3127,6 +3129,8 @@ if test -z "$ac_cv_prog_$1"; then
|
||||
ac_ct_$1=$$1
|
||||
AC_CHECK_PROG([ac_ct_$1], [$2], [$2], [$3], [$4])
|
||||
$1=$ac_ct_$1
|
||||
else
|
||||
$1="$ac_cv_prog_$1"
|
||||
fi
|
||||
])# AC_CHECK_TOOL
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user