summaryrefslogtreecommitdiff
path: root/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
blob: e6c3d7f335533865e907ccd6b2fdb0cda0f4a4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- 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)