1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 23:22:22 +03:00
openwrt-xburst/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch

16 lines
347 B
Diff
Raw Normal View History

--- a/aclocal.in
+++ b/aclocal.in
@@ -314,6 +314,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))
{
fatal "couldn't open directory `$m4dir': $!";