mirror of
https://git.yoctoproject.org/poky
synced 2026-02-04 07:48:43 +01:00
Redefiine regen-all in Makefile to invoke regen-importlib after building other regen- targets. Change the recipe to not build it before regen-all. This avoids trying to build it multiple times, which can occasionally fail. (From OE-Core rev: 72d62c9af07bf34bb8fbb3958742eb592985acc2) Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
919 B
Diff
26 lines
919 B
Diff
python3-native: run regen-importlib target correctly
|
|
|
|
regen-importlib depends on other regen- targets, so we must be sure to
|
|
run it after (most of) the others. In reality, we do not need to run it
|
|
at all since "make" will invoke it, if necessary. We do not want to
|
|
rely on that, though.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Joe Slater <joe.slater@windriver.com>
|
|
|
|
|
|
|
|
--- a/Makefile.pre.in
|
|
+++ b/Makefile.pre.in
|
|
@@ -709,7 +709,8 @@ regen-importlib: Programs/_freeze_import
|
|
############################################################################
|
|
# Regenerate all generated files
|
|
|
|
-regen-all: regen-opcode regen-opcode-targets regen-typeslots regen-grammar regen-ast regen-importlib
|
|
+regen-all: regen-opcode regen-opcode-targets regen-typeslots regen-grammar regen-ast
|
|
+ $(MAKE) regen-importlib
|
|
|
|
############################################################################
|
|
# Special rules for object files
|