X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=blobdiff_plain;f=tools%2Fautomake%2Fpatches%2F100-aclocal-skip-not-existing-directories.patch;fp=tools%2Fautomake%2Fpatches%2F100-aclocal-skip-not-existing-directories.patch;h=e5f2d004bbdb4def0a5bf0b25aa9bb9af345e309;hp=0000000000000000000000000000000000000000;hb=e8acbd86c3869d536194902f41b0af828d5313e1;hpb=6d6af7e5478deb6b4f1a5d9a70593971d677a2f4 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 index 000000000..e5f2d004b --- /dev/null +++ b/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch @@ -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': $!";