refresh patch: 000-relocatable.patch 100-aclocal-skip-not-existing-directories.patch 101-do-not-require-files.patch 200-other-V-values-for-verbosity.patch Announcement:https://lists.gnu.org/archive/html/info-gnu/2021-01/msg00010.html Signed-off-by: Jack Sun <sunjiazheng321521@gmail.com> Link: https://github.com/openwrt/openwrt/pull/17827 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
16 lines
376 B
Diff
16 lines
376 B
Diff
--- a/bin/aclocal.in
|
|
+++ b/bin/aclocal.in
|
|
@@ -372,6 +372,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))
|
|
{
|
|
# TODO: maybe avoid complaining only if errno == ENONENT?
|