1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

bitbake/build.py: Fix del_stamp work correctly after recent stamp function changes

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-01-07 14:03:27 +00:00
parent 0e26f53f9e
commit 5da9747024
+1 -1
View File
@@ -416,7 +416,7 @@ def del_stamp(task, d, file_name = None):
Removes a stamp for a given task
(d can be a data dict or dataCache)
"""
stamp_internal(task, d, file_name)
stamp = stamp_internal(task, d, file_name)
if os.access(stamp, os.F_OK):
os.remove(stamp)