]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* autoheader.sh: Allow multiple spaces between #undef and symbol exp-1999-09-04
authorTom Tromey <tromey@redhat.com>
Fri, 3 Sep 1999 00:49:08 +0000 (00:49 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 3 Sep 1999 00:49:08 +0000 (00:49 +0000)
name.

ChangeLog
autoheader.sh

index 8b10b2dfd3932df3856516bc135aeefb1b087035..afe1d0d2ed236280743a0453a15cce4452885da9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-09-02  Tom Tromey  <tromey@cygnus.com>
+
+       * autoheader.sh: Allow multiple spaces between #undef and symbol
+       name.
+
 1999-09-01  Akim Demaille  <akim@epita.fr>
 
        * acgeneral.m4 (AC_ACVERSION): Bump to 2.14.1 to differenciate the
index abf5484a93c8a37b55a2b98c13048e4469020e69..a0810145358abfc228080e909deb67b3657d7955 100644 (file)
@@ -267,7 +267,7 @@ status=0
 
 if test -n "$syms"; then
   for sym in $syms; do
-    if grep "^#[a-z]*[         ]$sym[  ]*$" $TEMPLATES >/dev/null; then
+    if grep "^#[a-z]*[         ][      ]*$sym[         ]*$" $TEMPLATES >/dev/null; then
       : # All is well.
     else
       echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2