aboutsummaryrefslogtreecommitdiffstats
path: root/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-01-09 14:51:23 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-01-09 14:51:23 +0000
commitcdaf75b641e6f55ed8de286d1db81d0338add315 (patch)
treec555970f33f6a52a4e25df595f8d7cb75c9dd8c8 /tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
parentda9782f93591fc4856d9fed753a9ee0e3168ede8 (diff)
downloadupstream-cdaf75b641e6f55ed8de286d1db81d0338add315.tar.gz
upstream-cdaf75b641e6f55ed8de286d1db81d0338add315.tar.bz2
upstream-cdaf75b641e6f55ed8de286d1db81d0338add315.zip
tools: automake: update to v1.15
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 43895
Diffstat (limited to 'tools/automake/patches/100-aclocal-skip-not-existing-directories.patch')
-rw-r--r--tools/automake/patches/100-aclocal-skip-not-existing-directories.patch16
1 files changed, 8 insertions, 8 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 e6c3d7f335..caaad084a4 100644
--- a/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
+++ b/tools/automake/patches/100-aclocal-skip-not-existing-directories.patch
@@ -1,15 +1,15 @@
---- a/aclocal.in
-+++ b/aclocal.in
-@@ -327,6 +327,12 @@
+--- a/bin/aclocal.in
++++ b/bin/aclocal.in
+@@ -354,6 +354,12 @@ sub scan_m4_dirs ($$@)
foreach my $m4dir (@dirlist)
{
+ if (! -d $m4dir)
-+ {
-+ msg ('override', "warning: skipping not existing directory `$m4dir'");
-+ next;
-+ }
++ {
++ msg ('override', "warning: skipping not existing directory `$m4dir'");
++ next;
++ }
+
if (! opendir (DIR, $m4dir))
{
- if ($install && $type == FT_USER && $first_user_m4dir)
+ # TODO: maybe avoid complaining only if errno == ENONENT?