Update to the latest stable release. This is the automake API that newer packages such as libtool 2.5.4 is bootstrapped with, and is required for bootstrapping it again. Manually Adjusted: - 000-relocatable.patch All other patches are automatically refreshed. Link: https://lists.gnu.org/archive/html/autotools-announce/2024-07/msg00000.html Signed-off-by: Michael Pratt <mcpratt@pm.me> Link: https://github.com/openwrt/openwrt/pull/16522 Signed-off-by: Robert Marko <robimarko@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?
|