]> sourceware.org Git - automake.git/commitdiff
* automake.in (handle_aclocal_m4): Fix stripping of the initial
authorPavel Roskin <proski@gnu.org>
Fri, 2 Feb 2001 12:33:19 +0000 (12:33 +0000)
committerPavel Roskin <proski@gnu.org>
Fri, 2 Feb 2001 12:33:19 +0000 (12:33 +0000)
"./" from the dependencies of aclocal.m4.
Reported by Ralf Corsepius.

ChangeLog
automake.in

index 8adcb227bdff8df06824a85d63ec0252d0beb17f..a6ba1a9acda8c094613a7f9814d270b3e56cd3c1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-02-02  Pavel Roskin  <proski@gnu.org>
+
+       * 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  <proski@gnu.org>
 
        * aclocal.in: Rename "verbosity" to "verbose". Always prepend
index fdaad6e60ee944fd91a87e0dd1e917ac112a18ba..69c10dd9eebe9631d61fe9596afd020f1467ab49 100755 (executable)
@@ -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";
This page took 0.034608 seconds and 5 git commands to generate.