You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/tools/automake/patches/100-aclocal-skip-not-existi...

16 lines
347 B
Diff

--- a/aclocal.in
+++ b/aclocal.in
@@ -309,6 +309,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': $!";