From: Pavel Roskin Date: Fri, 2 Feb 2001 12:33:19 +0000 (+0000) Subject: * automake.in (handle_aclocal_m4): Fix stripping of the initial X-Git-Tag: Release-1-4d~63 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=d383cf55dea41b136b96e4732612759ab6b456eb;p=automake.git * automake.in (handle_aclocal_m4): Fix stripping of the initial "./" from the dependencies of aclocal.m4. Reported by Ralf Corsepius. --- diff --git a/ChangeLog b/ChangeLog index 8adcb227..a6ba1a9a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-02-02 Pavel Roskin + + * automake.in (handle_aclocal_m4): Fix stripping of the initial + "./" from the dependencies of aclocal.m4. + Reported by Ralf Corsepius. + 2001-02-01 Pavel Roskin * aclocal.in: Rename "verbosity" to "verbose". Always prepend diff --git a/automake.in b/automake.in index fdaad6e6..69c10dd9 100755 --- a/automake.in +++ b/automake.in @@ -3202,7 +3202,7 @@ sub handle_aclocal_m4 { foreach $ac_dep (&my_glob ($amdir . '/*.m4')) { - $ac_dep =~ s/^\.\/*//; + $ac_dep =~ s/^\.\/+//; push (@ac_deps, $ac_dep) unless $ac_dep eq "aclocal.m4" || $ac_dep eq "acinclude.m4";