mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-10 08:44:39 +01:00
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Waiting to run
Build host tools / Build host tools for linux and macos based systems (push) Waiting to run
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>
20 lines
626 B
Diff
20 lines
626 B
Diff
--- a/bin/automake.in
|
|
+++ b/bin/automake.in
|
|
@@ -5700,7 +5700,7 @@ sub check_gnu_standards ()
|
|
# otherwise require non-.md.
|
|
my $required
|
|
= (! -f $file && -f "$file.md") ? "$file.md" : $file;
|
|
- require_file ("$am_file.am", GNU, $required);
|
|
+ require_file ("$am_file.am", GNITS, $required);
|
|
}
|
|
|
|
# Accept one of these three licenses; default to COPYING.
|
|
@@ -5714,7 +5714,7 @@ sub check_gnu_standards ()
|
|
last;
|
|
}
|
|
}
|
|
- require_file ("$am_file.am", GNU, 'COPYING')
|
|
+ require_file ("$am_file.am", GNITS, 'COPYING')
|
|
unless $license;
|
|
}
|
|
|