mirror of
https://github.com/immortalwrt/immortalwrt.git
synced 2025-08-07 22:06:25 +08:00

Update to the latest stable release with the new API versions for binaries. The temporary patching of shebangs is no longer necessary since the whitespace check has been changed to a warning. Part of a patch was upstreamed and therefore removed. Manually adjusted patch: - 000-relocatable.patch - 101-do-not-require-files.patch All other patches are automatically refreshed. Link: https://lists.gnu.org/archive/html/autotools-announce/2025-05/msg00001.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
|
|
@@ -370,6 +370,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?
|