summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/siggen.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
-rw-r--r--bitbake/lib/bb/siggen.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index bc96fd3b7a..bb8203df05 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -238,7 +238,6 @@ class SignatureGeneratorBasic(SignatureGenerator):
238 with os.fdopen(fd, "wb") as stream: 238 with os.fdopen(fd, "wb") as stream:
239 p = pickle.dump(data, stream, -1) 239 p = pickle.dump(data, stream, -1)
240 stream.flush() 240 stream.flush()
241 os.fsync(fd)
242 os.chmod(tmpfile, 0664) 241 os.chmod(tmpfile, 0664)
243 os.rename(tmpfile, sigfile) 242 os.rename(tmpfile, sigfile)
244 except (OSError, IOError) as err: 243 except (OSError, IOError) as err: