diff options
| author | Joe Slater <joe.slater@windriver.com> | 2018-04-23 10:21:42 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-04 13:28:05 +0100 |
| commit | 1d708bb18578c54bf64fdf028a2832741eb842ff (patch) | |
| tree | 596eb623e1d1b8b3b15904eb4672474b924dcce6 /meta/recipes-devtools/python/python3 | |
| parent | 78c0b21e3da821c90e5cb84d08538dd03dc6c30b (diff) | |
| download | poky-1d708bb18578c54bf64fdf028a2832741eb842ff.tar.gz | |
python3-native: correctly invoke regen-importlib make target
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>
Diffstat (limited to 'meta/recipes-devtools/python/python3')
| -rw-r--r-- | meta/recipes-devtools/python/python3/regen-all.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3/regen-all.patch b/meta/recipes-devtools/python/python3/regen-all.patch new file mode 100644 index 0000000000..36b9d9d919 --- /dev/null +++ b/meta/recipes-devtools/python/python3/regen-all.patch | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | python3-native: run regen-importlib target correctly | ||
| 2 | |||
| 3 | regen-importlib depends on other regen- targets, so we must be sure to | ||
| 4 | run it after (most of) the others. In reality, we do not need to run it | ||
| 5 | at all since "make" will invoke it, if necessary. We do not want to | ||
| 6 | rely on that, though. | ||
| 7 | |||
| 8 | Upstream-Status: Pending | ||
| 9 | |||
| 10 | Signed-off-by: Joe Slater <joe.slater@windriver.com> | ||
| 11 | |||
| 12 | |||
| 13 | |||
| 14 | --- a/Makefile.pre.in | ||
| 15 | +++ b/Makefile.pre.in | ||
| 16 | @@ -709,7 +709,8 @@ regen-importlib: Programs/_freeze_import | ||
| 17 | ############################################################################ | ||
| 18 | # Regenerate all generated files | ||
| 19 | |||
| 20 | -regen-all: regen-opcode regen-opcode-targets regen-typeslots regen-grammar regen-ast regen-importlib | ||
| 21 | +regen-all: regen-opcode regen-opcode-targets regen-typeslots regen-grammar regen-ast | ||
| 22 | + $(MAKE) regen-importlib | ||
| 23 | |||
| 24 | ############################################################################ | ||
| 25 | # Special rules for object files | ||
