diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-07 14:03:27 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-07 14:03:27 +0000 |
commit | 5da9747024cb59e6cd5422c7917b1588d478c135 (patch) | |
tree | 7e488e0a7c67dc409b5b50aeb5458b018f57ebc4 /bitbake/lib | |
parent | 0e26f53f9e2f190b302235864552956ed8f6d39b (diff) | |
download | poky-5da9747024cb59e6cd5422c7917b1588d478c135.tar.gz |
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/lib')
-rw-r--r-- | bitbake/lib/bb/build.py | 2 |
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 | ||