diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-10 16:10:07 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-10 16:10:07 +0000 |
commit | ecde55c971e3c25bd15fcdca643c3e1b451c3bd6 (patch) | |
tree | 441a9bcfae2b84dd86b1dcdfeaec321ccb9b0111 | |
parent | c5d8ec2df59fd774f6c60c512d34dd6a2c3dfe59 (diff) |
[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
-rw-r--r-- | tools/automake/patches/100-aclocal-skip-not-existing-directories.patch | 17 |
1 files changed, 10 insertions, 7 deletions
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 1df30300d..c049b835d 100644 --- 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 -@@ -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)) { -- 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': $!"; |