[tools] automake: update to 1.11.6
[openwrt.git] / tools / automake / patches / 100-aclocal-skip-not-existing-directories.patch
1 --- a/aclocal.in
2 +++ b/aclocal.in
3 @@ -327,6 +327,12 @@
4  
5    foreach my $m4dir (@dirlist)
6      {
7 +      if (! -d $m4dir)
8 +      {
9 +        msg ('override', "warning: skipping not existing directory `$m4dir'");
10 +        next;
11 +      }
12 +
13        if (! opendir (DIR, $m4dir))
14         {
15           if ($install && $type == FT_USER && $first_user_m4dir)