merge r24424 and r24427
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 10 Dec 2010 16:22:16 +0000 (16:22 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 10 Dec 2010 16:22:16 +0000 (16:22 +0000)
SVN-Revision: 24432

tools/automake/patches/100-aclocal-skip-not-existing-directories.patch [new file with mode: 0644]

diff --git a/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch b/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
new file mode 100644 (file)
index 0000000..e5f2d00
--- /dev/null
@@ -0,0 +1,15 @@
+--- a/aclocal.in
++++ b/aclocal.in
+@@ -295,6 +295,12 @@ sub scan_m4_dirs ($@)
+   foreach my $m4dir (@dirlist)
+     {
++      if (! -d $m4dir)
++      {
++        msg ('override', "warning: skipping not existing directory `$m4dir'");
++        next;
++      }
++
+       if (! opendir (DIR, $m4dir))
+       {
+         fatal "couldn't open directory `$m4dir': $!";