mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 19:25:21 +02:00
[tools] automake: rework patch; only skip when the directories does not exist, this preserves error cases like missing access permissions
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24427 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
c5d8ec2df5
commit
ecde55c971
@ -1,12 +1,15 @@
|
|||||||
--- a/aclocal.in
|
--- a/aclocal.in
|
||||||
+++ b/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 (! opendir (DIR, $m4dir))
|
+ if (! -d $m4dir)
|
||||||
{
|
+ {
|
||||||
- fatal "couldn't open directory `$m4dir': $!";
|
|
||||||
+ msg ('override', "warning: skipping not existing directory `$m4dir'");
|
+ msg ('override', "warning: skipping not existing directory `$m4dir'");
|
||||||
+ next;
|
+ next;
|
||||||
}
|
+ }
|
||||||
|
+
|
||||||
# We reverse the directory contents so that foo2.m4 gets
|
if (! opendir (DIR, $m4dir))
|
||||||
|
{
|
||||||
|
fatal "couldn't open directory `$m4dir': $!";
|
||||||
|
Loading…
Reference in New Issue
Block a user