- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
26 lines
793 B
Diff
26 lines
793 B
Diff
Upstream-Status: Pending
|
|
|
|
Patch was imported from the OpenEmbedded git server
|
|
(git://git.openembedded.org/openembedded)
|
|
as of commit id 676cbb54d42c89a4832871064cfcb7ee2ad372ee
|
|
|
|
klcc-cross: Add patch to use /usr/bin/env perl
|
|
Certain configurations (such as autobuilders) may build in very
|
|
deep paths (that are longer than the #! mechanism allows) which
|
|
makes it unsafe to use the direct path for perl. In our case we know
|
|
that /usr/bin/env perl will always return ours (if it has been built).
|
|
|
|
Signed-off-by: Tom Rini <tom_rini@mentor.com>
|
|
|
|
--- a/klcc/makeklcc.pl
|
|
+++ b/klcc/makeklcc.pl
|
|
@@ -26,7 +26,7 @@ sub pathsearch($) {
|
|
return undef;
|
|
}
|
|
|
|
-print "#!${perlpath}\n";
|
|
+print "#!/usr/bin/env perl\n";
|
|
|
|
open(KLIBCCONF, "< $klibcconf\0")
|
|
or die "$0: cannot open $klibcconf: $!\n";
|