+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.
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;