]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* autoheader.sh (config_h): Added templates sort. Under NetBSD 1.4.1
authorAkim Demaille <akim@epita.fr>
Wed, 3 May 2000 15:43:40 +0000 (15:43 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 3 May 2000 15:43:40 +0000 (15:43 +0000)
/bin/sh `set' command do not return a sorted variables list.

ChangeLog
autoheader.in
autoheader.sh
bin/autoheader.in

index 1477af1deb5fb5f3058d273eed954135c2c2fece..746cc876e2a5eaa6cfbbd64aa2c1cf619d39b35f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-03  Nicolas Joly  <njoly@pasteur.fr>
+
+       * autoheader.sh (config_h): Added templates sort. Under NetBSD 1.4.1
+       /bin/sh `set' command do not return a sorted variables list.
+
 2000-05-03  Akim Demaille  <akim@epita.fr>
 
        * tests/tools.m4 (autoheader): Don't pass `-l at_srcdir' to
index 27846c3b8237ed8b806e94f666a6706b3a5b27f7..e068e6603ae0002bcaeae5594c275e8d60baff6a 100644 (file)
@@ -252,7 +252,7 @@ test -r $localdir/acconfig.h &&
   sed -e '/@BOTTOM@/,$d' -e 's/@TOP@//' $localdir/acconfig.h >>$tmp/config.hin
 
 # Dump the templates from `configure.in'.
-for verb in `(set) 2>&1 | sed -n -e '/^ac_verbatim/s/^\([^=]*\)=.*$/\1/p'`; do
+for verb in `(set) 2>&1 | sed -n -e '/^ac_verbatim/s/^\([^=]*\)=.*$/\1/p' | sort`; do
   echo >>$tmp/config.hin
   eval echo '"${'$verb'}"' >>$tmp/config.hin
 done
index 27846c3b8237ed8b806e94f666a6706b3a5b27f7..e068e6603ae0002bcaeae5594c275e8d60baff6a 100644 (file)
@@ -252,7 +252,7 @@ test -r $localdir/acconfig.h &&
   sed -e '/@BOTTOM@/,$d' -e 's/@TOP@//' $localdir/acconfig.h >>$tmp/config.hin
 
 # Dump the templates from `configure.in'.
-for verb in `(set) 2>&1 | sed -n -e '/^ac_verbatim/s/^\([^=]*\)=.*$/\1/p'`; do
+for verb in `(set) 2>&1 | sed -n -e '/^ac_verbatim/s/^\([^=]*\)=.*$/\1/p' | sort`; do
   echo >>$tmp/config.hin
   eval echo '"${'$verb'}"' >>$tmp/config.hin
 done
index 27846c3b8237ed8b806e94f666a6706b3a5b27f7..e068e6603ae0002bcaeae5594c275e8d60baff6a 100644 (file)
@@ -252,7 +252,7 @@ test -r $localdir/acconfig.h &&
   sed -e '/@BOTTOM@/,$d' -e 's/@TOP@//' $localdir/acconfig.h >>$tmp/config.hin
 
 # Dump the templates from `configure.in'.
-for verb in `(set) 2>&1 | sed -n -e '/^ac_verbatim/s/^\([^=]*\)=.*$/\1/p'`; do
+for verb in `(set) 2>&1 | sed -n -e '/^ac_verbatim/s/^\([^=]*\)=.*$/\1/p' | sort`; do
   echo >>$tmp/config.hin
   eval echo '"${'$verb'}"' >>$tmp/config.hin
 done