summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/build.py')
-rw-r--r--bitbake/lib/bb/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 968e2ea562..f127796c07 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -416,7 +416,7 @@ def del_stamp(task, d, file_name = None):
416 Removes a stamp for a given task 416 Removes a stamp for a given task
417 (d can be a data dict or dataCache) 417 (d can be a data dict or dataCache)
418 """ 418 """
419 stamp_internal(task, d, file_name) 419 stamp = stamp_internal(task, d, file_name)
420 if os.access(stamp, os.F_OK): 420 if os.access(stamp, os.F_OK):
421 os.remove(stamp) 421 os.remove(stamp)
422 422