]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 10 Apr 2006 09:15:11 +0000 (09:15 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 10 Apr 2006 09:15:11 +0000 (09:15 +0000)
confdefs.h as-is.  In general, if it has backslash-newline or the
like, then it doesn't work either to sort or to remove empty
lines.

ChangeLog
lib/autoconf/general.m4

index 8f855a0b39097b005d3b66e58c3782dfe9e6dab2..eb1d77930210f8b7d1cc3ed6fadd97d87906d382 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
+       confdefs.h as-is.  In general, if it has backslash-newline or the
+       like, then it doesn't work either to sort or to remove empty
+       lines.
+
 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
 
        * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
index 12842f73673efe5adbfc0d052c92beab7c87df23..2429425d21511e2ce730279699a8567ff8a98ad9 100644 (file)
@@ -1236,7 +1236,8 @@ trap '
 
     if test -s confdefs.h; then
       AS_BOX([confdefs.h.])
-      sort -u confdefs.h
+      echo
+      cat confdefs.h
       echo
     fi
     test "$ac_signal" != 0 &&