diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-09 14:51:23 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-09 14:51:23 +0000 |
commit | cdaf75b641e6f55ed8de286d1db81d0338add315 (patch) | |
tree | c555970f33f6a52a4e25df595f8d7cb75c9dd8c8 /tools/automake/patches/100-aclocal-skip-not-existing-directories.patch | |
parent | da9782f93591fc4856d9fed753a9ee0e3168ede8 (diff) | |
download | mtk-20170518-cdaf75b641e6f55ed8de286d1db81d0338add315.zip mtk-20170518-cdaf75b641e6f55ed8de286d1db81d0338add315.tar.gz mtk-20170518-cdaf75b641e6f55ed8de286d1db81d0338add315.tar.bz2 |
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.patch | 16 |
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 e6c3d7f..caaad08 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? |