diff options
author | Mark Hatle <mark.hatle@kernel.crashing.org> | 2021-03-25 17:44:02 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-03-28 22:28:27 +0100 |
commit | 63831568bdf49d21edcc158c157ac086e25e9168 (patch) | |
tree | 93a7bd99b05e0bb47d9bfb0d47f46084960db01d /meta/classes | |
parent | f4b82998b9f83fda9478409325d3714938fd278e (diff) | |
download | poky-63831568bdf49d21edcc158c157ac086e25e9168.tar.gz |
populate_sdk_ext: Avoid copying and producing .pyc files
Since pyc cache files are really system specific, no real reason to copy or
generate them during the eSDK build process. Also generating them has the
possibility of re-using inodes that pseudo may have been tracking, leading
a build failure.
(From OE-Core rev: ce8eba263647ae63a722122e28f26af46ae083a0)
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 9112ab6c5e..14689ec6ac 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -251,7 +251,9 @@ python copy_buildsystem () { | |||
251 | 251 | ||
252 | # Create a layer for new recipes / appends | 252 | # Create a layer for new recipes / appends |
253 | bbpath = d.getVar('BBPATH') | 253 | bbpath = d.getVar('BBPATH') |
254 | bb.process.run(['devtool', '--bbpath', bbpath, '--basepath', baseoutpath, 'create-workspace', '--create-only', os.path.join(baseoutpath, 'workspace')]) | 254 | env = os.environ.copy() |
255 | env['PYTHONDONTWRITEBYTECODE'] = '1' | ||
256 | bb.process.run(['devtool', '--bbpath', bbpath, '--basepath', baseoutpath, 'create-workspace', '--create-only', os.path.join(baseoutpath, 'workspace')], env=env) | ||
255 | 257 | ||
256 | # Create bblayers.conf | 258 | # Create bblayers.conf |
257 | bb.utils.mkdirhier(baseoutpath + '/conf') | 259 | bb.utils.mkdirhier(baseoutpath + '/conf') |