mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-27 01:49:56 +08:00
AC_CACHE_USE -> AC_CACHE_VAL.
This commit is contained in:
parent
c6846da0d9
commit
7c2991eeff
2
NEWS
2
NEWS
@ -7,7 +7,7 @@ Major changes in release 2.0:
|
||||
can be selected with the --cache-file=FILE option.
|
||||
|
||||
** New macros:
|
||||
* AC_CACHE_USE to share results of tests between configure runs.
|
||||
* AC_CACHE_VAL to share results of tests between configure runs.
|
||||
* AC_CONFIG_AUX, AC_SYSTEM_TYPE, AC_SUBST_FILE, AC_MAKE_LINKS to
|
||||
support deciding unguessable features based on the host and target types.
|
||||
* AC_CONFIG_SUBDIRS to recursively configure a source tree.
|
||||
|
@ -228,7 +228,7 @@ define(AC_PROG_INSTALL,
|
||||
# Avoid using ./install, which might have been erroneously created
|
||||
# by make from ./install.sh.
|
||||
if test "z${INSTALL}" = "z" ; then
|
||||
AC_CACHE_USE(ac_cv_program_INSTALL,
|
||||
AC_CACHE_VAL(ac_cv_program_INSTALL,
|
||||
[ AC_CHECKING(for a BSD compatible install)
|
||||
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
|
||||
for ac_dir in $PATH; do
|
||||
|
@ -228,7 +228,7 @@ define(AC_PROG_INSTALL,
|
||||
# Avoid using ./install, which might have been erroneously created
|
||||
# by make from ./install.sh.
|
||||
if test "z${INSTALL}" = "z" ; then
|
||||
AC_CACHE_USE(ac_cv_program_INSTALL,
|
||||
AC_CACHE_VAL(ac_cv_program_INSTALL,
|
||||
[ AC_CHECKING(for a BSD compatible install)
|
||||
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
|
||||
for ac_dir in $PATH; do
|
||||
|
Loading…
Reference in New Issue
Block a user