projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
package/base-files-network: fix udhcpc issues introduced in r28866 (closes: #10383)
[openwrt.git]
/
tools
/
automake
/
patches
/
100-aclocal-skip-not-existing-directories.patch
diff --git
a/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
b/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
index
1df3030
..
c049b83
100644
(file)
--- a/
tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
+++ b/
tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
@@
-1,12
+1,15
@@
--- a/aclocal.in
+++ b/aclocal.in
--- a/aclocal.in
+++ b/aclocal.in
-@@ -311,7 +311,8 @@ sub scan_m4_dirs ($@)
+@@ -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))
{
if (! opendir (DIR, $m4dir))
{
-- fatal "couldn't open directory `$m4dir': $!";
-+ msg ('override', "warning: skipping not existing directory `$m4dir'");
-+ next;
- }
-
- # We reverse the directory contents so that foo2.m4 gets
+ fatal "couldn't open directory `$m4dir': $!";
This page took
0.023306 seconds
and
4
git commands to generate.