diff options
author | Devendra Tewari <devendra.tewari@gmail.com> | 2021-04-19 11:23:58 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-06 11:16:23 +0100 |
commit | b71375304f393db62e0894af66e9a60bb9a5c8cc (patch) | |
tree | ac14a351c1c6cd0ba2679c18a4de92c71dee0e7f /meta/classes/reproducible_build.bbclass | |
parent | 974441aeda1a2e601865743e945e0332c115ef76 (diff) | |
download | poky-b71375304f393db62e0894af66e9a60bb9a5c8cc.tar.gz |
classes/lib/scripts: Use bb.utils.rename() instead of os.rename()
Incremental build in Docker fails with:
OSError: [Errno 18] Invalid cross-device link
when source and destination are on different overlay filesystems.
Rather than adding fallback code to every call site, use a new wrapper
in bitbake which detects this case and falls back to shutil.move
which is slower but will handtle the overlay docker filesystems correctly.
[YOCTO #14301]
(From OE-Core rev: 656a65b2b84e7d529b89cf5de7eb838f902d84a2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/reproducible_build.bbclass')
-rw-r--r-- | meta/classes/reproducible_build.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/reproducible_build.bbclass b/meta/classes/reproducible_build.bbclass index 9337d791e8..ea643f2860 100644 --- a/meta/classes/reproducible_build.bbclass +++ b/meta/classes/reproducible_build.bbclass | |||
@@ -66,7 +66,7 @@ python do_deploy_source_date_epoch_setscene () { | |||
66 | if os.path.exists(sde_file): | 66 | if os.path.exists(sde_file): |
67 | target = d.getVar('SDE_FILE') | 67 | target = d.getVar('SDE_FILE') |
68 | bb.debug(1, "Moving setscene SDE file %s -> %s" % (sde_file, target)) | 68 | bb.debug(1, "Moving setscene SDE file %s -> %s" % (sde_file, target)) |
69 | os.rename(sde_file, target) | 69 | bb.utils.rename(sde_file, target) |
70 | else: | 70 | else: |
71 | bb.debug(1, "%s not found!" % sde_file) | 71 | bb.debug(1, "%s not found!" % sde_file) |
72 | } | 72 | } |