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 changed files with 1 additions and 1 deletions

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)