tn3399_openwrt/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
Luka Perkov 0b4e8c4c36 automake: update to 1.11.6
Signed-off-by: Luka Perkov <luka@openwrt.org>

SVN-Revision: 39108
2013-12-17 02:47:13 +00:00

16 lines
334 B
Diff

--- a/aclocal.in
+++ b/aclocal.in
@@ -327,6 +327,12 @@
foreach my $m4dir (@dirlist)
{
+ if (! -d $m4dir)
+ {
+ msg ('override', "warning: skipping not existing directory `$m4dir'");
+ next;
+ }
+
if (! opendir (DIR, $m4dir))
{
if ($install && $type == FT_USER && $first_user_m4dir)