diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2018-03-15 18:54:58 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-20 09:59:31 +0000 |
commit | 066700462a92a0e577c296703c3ff13f6b3d4dd5 (patch) | |
tree | 639aa8f7dd6a35e7f3399ec65ebcd8823569035a /meta/recipes-devtools | |
parent | 649d23696fa1f5db87fd9ff57ca820d92e8c4bc0 (diff) | |
download | poky-066700462a92a0e577c296703c3ff13f6b3d4dd5.tar.gz |
python3-native: fix build races in 'make regen-all'
Python 2.x and target Python 3.x do not have this issue.
[YOCTO #12596]
(From OE-Core rev: 5bfba3d09cfabb3a1895dcf9921801df318d804c)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.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')
-rw-r--r-- | meta/recipes-devtools/python/python3-native_3.5.4.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-native_3.5.4.bb b/meta/recipes-devtools/python/python3-native_3.5.4.bb index c8252539a9..a5dedb7aa7 100644 --- a/meta/recipes-devtools/python/python3-native_3.5.4.bb +++ b/meta/recipes-devtools/python/python3-native_3.5.4.bb | |||
@@ -64,6 +64,8 @@ do_configure_append() { | |||
64 | # Regenerate all of the generated files | 64 | # Regenerate all of the generated files |
65 | # This ensures that pgen and friends get created during the compile phase | 65 | # This ensures that pgen and friends get created during the compile phase |
66 | do_compile_prepend() { | 66 | do_compile_prepend() { |
67 | # Has to be done ahead of other regen- targets due to https://bugs.python.org/issue33080 | ||
68 | oe_runmake regen-importlib | ||
67 | oe_runmake regen-all | 69 | oe_runmake regen-all |
68 | } | 70 | } |
69 | 71 | ||