summaryrefslogtreecommitdiff
path: root/bitbake
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:03:27 +0000
commit5da9747024cb59e6cd5422c7917b1588d478c135 (patch)
tree7e488e0a7c67dc409b5b50aeb5458b018f57ebc4 /bitbake
parent0e26f53f9e2f190b302235864552956ed8f6d39b (diff)
downloadopenembedded-core-5da9747024cb59e6cd5422c7917b1588d478c135.tar.gz
openembedded-core-5da9747024cb59e6cd5422c7917b1588d478c135.tar.bz2
openembedded-core-5da9747024cb59e6cd5422c7917b1588d478c135.tar.xz
openembedded-core-5da9747024cb59e6cd5422c7917b1588d478c135.zip
bitbake/build.py: Fix del_stamp work correctly after recent stamp function changes
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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 968e2ea56..f127796c0 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):
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)