From: Alexander Kanavin Date: Thu, 15 Mar 2018 16:54:58 +0000 (+0200) Subject: python3-native: fix build races in 'make regen-all' X-Git-Tag: uninative-1.9~155 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5bfba3d09cfabb3a1895dcf9921801df318d804c;p=openembedded-core.git python3-native: fix build races in 'make regen-all' Python 2.x and target Python 3.x do not have this issue. [YOCTO #12596] Signed-off-by: Alexander Kanavin Signed-off-by: Ross Burton --- 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() { # Regenerate all of the generated files # This ensures that pgen and friends get created during the compile phase do_compile_prepend() { + # Has to be done ahead of other regen- targets due to https://bugs.python.org/issue33080 + oe_runmake regen-importlib oe_runmake regen-all }