openwrtv3/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
Jo-Philipp Wich 122069caba automake: further relocation fixes
SVN-Revision: 29828
2012-01-20 15:19:22 +00:00

15 lines
347 B
Diff

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