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:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user