AC_CACHE_USE -> AC_CACHE_VAL.

This commit is contained in:
David MacKenzie 1994-05-05 00:27:10 +00:00
parent c6846da0d9
commit 7c2991eeff
3 changed files with 3 additions and 3 deletions

2
NEWS
View File

@ -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.

View File

@ -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

View File

@ -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