mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
093b12cba9
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net> SVN-Revision: 31173
16 lines
347 B
Diff
16 lines
347 B
Diff
--- 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': $!";
|