]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
authorAlexandre Duret-Lutz <adl@gnu.org>
Fri, 19 Apr 2002 08:30:38 +0000 (08:30 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Fri, 19 Apr 2002 08:30:38 +0000 (08:30 +0000)
from aclocal.m4 too.

ChangeLog
bin/autoupdate.in

index 17d2627e9bec9d36cb8be2e54e8499eb3abda5ea..dc83c59166cbc2b0023618791f4e4b553c3c57d3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
+       from aclocal.m4 too.
+
 2002-04-12  Akim Demaille  <akim@epita.fr>
 
        * tests/wrappl.as: New, M4sh precursor of wrappl.in.
index 526ee208f79408027f430dd9e2081dfa64d6bc84..63032da16d2af84675f89a479cf2bfb9afb2237e 100644 (file)
@@ -167,12 +167,11 @@ sub handle_autoconf_macros ()
       my ($domain, $file, $macro) = /^(AC|AU):(.*):([^:]*)$/ or next;
       # ../lib/m4sugar/m4sugar.m4  -> m4sugar
       # ../lib/autoconf/general.m4 -> autoconf
-      # aclocal.m4 -> ignore
-      next
-       if $file eq 'aclocal.m4';
+      # aclocal.m4 -> aclocal
       my $set = basename (dirname ($file));
+      $set = 'aclocal' if $file eq 'aclocal.m4';
       die "$me: unknown set: $set: $_\n"
-       unless $set =~ /^(m4sugar|autoconf)$/;
+       unless $set =~ /^(m4sugar|aclocal|autoconf)$/;
       if ($domain eq "AC")
        {
          $ac_macros{$macro} = $set;