Do not use $(V) - force AM_V=1
[openwrt/.git] / tools / automake / patches / 100-aclocal-skip-not-existing-directories.patch
index c049b835d2f846f766eb29419c4723af2b50a03a..caaad084a4996a4ad8afca3411381382f6ff8e2c 100644 (file)
@@ -1,15 +1,15 @@
---- a/aclocal.in
-+++ b/aclocal.in
-@@ -309,6 +309,12 @@ sub scan_m4_dirs ($@)
+--- a/bin/aclocal.in
++++ b/bin/aclocal.in
+@@ -354,6 +354,12 @@ sub scan_m4_dirs ($$@)
  
    foreach my $m4dir (@dirlist)
      {
 +      if (! -d $m4dir)
-+      {
-+        msg ('override', "warning: skipping not existing directory `$m4dir'");
-+        next;
-+      }
++        {
++          msg ('override', "warning: skipping not existing directory `$m4dir'");
++          next;
++        }
 +
        if (! opendir (DIR, $m4dir))
        {
-         fatal "couldn't open directory `$m4dir': $!";
+         # TODO: maybe avoid complaining only if errno == ENONENT?