* lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.

This commit is contained in:
Noah Misch 2006-04-03 13:51:02 +00:00
parent f169721e44
commit bb393e107a
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-04-03 Noah Misch <noah@cs.caltech.edu>
* lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
2006-04-03 Eric Blake <ebb9@byu.net>
* THANKS: Add myself.

View File

@ -1862,10 +1862,11 @@ _AC_CACHE_DUMP() |
:end'] >>confcache
if diff $cache_file confcache >/dev/null 2>&1; then :; else
if test -w $cache_file; then
test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
test "x$cache_file" != "x/dev/null" &&
AC_MSG_NOTICE([updating cache $cache_file])
cat confcache >$cache_file
else
echo "not updating unwritable cache $cache_file"
AC_MSG_NOTICE([not updating unwritable cache $cache_file])
fi
fi
rm -f confcache[]dnl