mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-06 13:55:22 +02:00
kbuild: fix empty ${PYTHON} in scripts/link-vmlinux.sh
The two commitsd8d2d38275
("kbuild: remove PYTHON variable")a8cccdd954
("init: lto: ensure initcall ordering") were applied in the same development cycle, into two different trees. After they were merged together, this ${PYTHON} expands to an empty string. Therefore, ${srctree}/scripts/jobserver-exec is executed directly. (it has the executable bit set) This is working but let's fix the code into the intended form. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Reviewed-by: Sedat Dilek <sedat.dilek@gmail.com>
This commit is contained in:
parent
b6ad541697
commit
099c22bdca
|
@ -50,7 +50,7 @@ gen_initcalls()
|
||||||
{
|
{
|
||||||
info GEN .tmp_initcalls.lds
|
info GEN .tmp_initcalls.lds
|
||||||
|
|
||||||
${PYTHON} ${srctree}/scripts/jobserver-exec \
|
${PYTHON3} ${srctree}/scripts/jobserver-exec \
|
||||||
${PERL} ${srctree}/scripts/generate_initcall_order.pl \
|
${PERL} ${srctree}/scripts/generate_initcall_order.pl \
|
||||||
${KBUILD_VMLINUX_OBJS} ${KBUILD_VMLINUX_LIBS} \
|
${KBUILD_VMLINUX_OBJS} ${KBUILD_VMLINUX_LIBS} \
|
||||||
> .tmp_initcalls.lds
|
> .tmp_initcalls.lds
|
||||||
|
|
Loading…
Reference in New Issue
Block a user