* configure.in: Replace obsolete AC_OUTPUT syntax with

AC_CONFIG_FILES, AC_CONFIG_COMMANDS, and new-type AC_OUTPUT trio.
This commit is contained in:
Roland McGrath 2002-10-18 22:17:48 +00:00
parent 45fba3dfbb
commit c118d63419
2 changed files with 7 additions and 2 deletions

View File

@ -30,6 +30,9 @@
2002-10-18 Jeff Bailey <jbailey@gnu.org>
* configure.in: Replace obsolete AC_OUTPUT syntax with
AC_CONFIG_FILES, AC_CONFIG_COMMANDS, and new-type AC_OUTPUT trio.
* aclocal.m4 (GLIBC_PROVIDES): Add AC_PROVIDEs for
_AS_PATH_SEPARATOR_PREPARE and _AS_TEST_PREPARE.

View File

@ -1872,8 +1872,10 @@ RELEASE=`sed -n -e 's/^#define RELEASE "\([^"]*\)"/\1/p' < $srcdir/version.h`
AC_SUBST(VERSION)
AC_SUBST(RELEASE)
AC_OUTPUT(config.make glibcbug ${config_makefile} ${config_uname}, [
AC_CONFIG_FILES([config.make glibcbug ${config_makefile} ${config_uname}])
AC_CONFIG_COMMANDS([default],[[
case $CONFIG_FILES in *config.make*)
echo "$config_vars" >> config.make;;
esac
test -d bits || mkdir bits], [config_vars='$config_vars'])
test -d bits || mkdir bits]],[[config_vars='$config_vars']])
AC_OUTPUT