lede/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch

16 lines
376 B
Diff
Raw Permalink Normal View History

2017-09-06 11:19:45 +00:00
--- a/bin/aclocal.in
+++ b/bin/aclocal.in
2024-04-09 15:28:22 +00:00
@@ -371,6 +371,12 @@ sub scan_m4_dirs ($$@)
2017-09-06 11:19:45 +00:00
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?