summaryrefslogtreecommitdiffstats
path: root/lib/bb/build.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-07 14:03:27 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-07 14:04:01 +0000
commit6de4f9f5857ecce5bbd4d490ecbbd3570e5b3ee5 (patch)
tree7350e5f24e150ec383947d9d60c3e53d7ae53027 /lib/bb/build.py
parent01c4bffcd918b74f4c61405cca3b42a3b104cd35 (diff)
downloadbitbake-6de4f9f5857ecce5bbd4d490ecbbd3570e5b3ee5.tar.gz
bitbake/build.py: Fix del_stamp work correctly after recent stamp function changes
(From Poky rev: 5da9747) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/build.py')
-rw-r--r--lib/bb/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/build.py b/lib/bb/build.py
index 0f7059c98..9aa670ac5 100644
--- a/lib/bb/build.py
+++ b/lib/bb/build.py
@@ -350,7 +350,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)