]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* autoheader.sh: Fixed regexp when searching for missing symbol.
authorTom Tromey <tromey@redhat.com>
Tue, 20 Jul 1999 06:25:04 +0000 (06:25 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 20 Jul 1999 06:25:04 +0000 (06:25 +0000)
From Pavel Roskin.

ChangeLog
autoheader.sh

index 66d2e397ad517fb5cb5919dc3b224eff114aef75..cfbe53acea87c264973bb316e6a48632a74345f3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-07-20  Tom Tromey  <tromey@cygnus.com>
+
+       * autoheader.sh: Fixed regexp when searching for missing symbol.
+       From Pavel Roskin.
+
 1999-07-16  Tom Tromey  <tromey@cygnus.com>
 
        * autoheader.sh: Be more stringent when looking to see if symbol
index d46266ab2b8a5677023caa04f06d87b81049bdff..abf5484a93c8a37b55a2b98c13048e4469020e69 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