diff options
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? |