aboutsummaryrefslogtreecommitdiffstats
path: root/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
blob: ad019ddd1ae8cf9dabdd66d799e471c89e7233bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- a/bin/aclocal.in
+++ b/bin/aclocal.in
@@ -356,6 +356,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))
 	{
 	  # TODO: maybe avoid complaining only if errno == ENONENT?