]> sourceware.org Git - glibc.git/commitdiff
* configure.in: Replace obsolete AC_OUTPUT syntax with
authorRoland McGrath <roland@gnu.org>
Fri, 18 Oct 2002 22:17:48 +0000 (22:17 +0000)
committerRoland McGrath <roland@gnu.org>
Fri, 18 Oct 2002 22:17:48 +0000 (22:17 +0000)
        AC_CONFIG_FILES, AC_CONFIG_COMMANDS, and new-type AC_OUTPUT trio.

ChangeLog
configure.in

index b5105b65354a450c63c685339fa318db12f3bc1d..f7d2de6de5e4ec75f5b44aa387928ca5bc857f41 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
 
index 4d3160a82ac27f1002f188ecf2ded77a34b637f3..a922589ff7317907728d12fff1ee3a886ee14dfc 100644 (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
This page took 0.042668 seconds and 5 git commands to generate.