summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2022-12-07 16:36:49 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-08 10:50:24 +0000
commit528f4fb3683d048537604e4562ea758968060d62 (patch)
tree7192157155de19637ae0df932c7e1021375495f5
parentebfab6c3034d41252d19c6e1a0ba79072aa51146 (diff)
downloadopenembedded-core-528f4fb3683d048537604e4562ea758968060d62.tar.gz
combo-layer: dont use bb.utils.rename
Bitbake may not be configured, and bb isn't imported anyway. Instead just use os.rename(), and take the filename from the file object instead of duplicating logic. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xscripts/combo-layer2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/combo-layer b/scripts/combo-layer
index c122f4b5e4..e467f390c1 100755
--- a/scripts/combo-layer
+++ b/scripts/combo-layer
@@ -507,7 +507,7 @@ def check_patch(patchfile):
f.close()
if of:
of.close()
- bb.utils.rename(patchfile + '.tmp', patchfile)
+ os.rename(of.name, patchfile)
def drop_to_shell(workdir=None):
if not sys.stdin.isatty():