From: Richard Purdie Date: Fri, 7 Jan 2011 14:03:27 +0000 (+0000) Subject: bitbake/build.py: Fix del_stamp work correctly after recent stamp function changes X-Git-Tag: 2011-1~2966 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5da9747024cb59e6cd5422c7917b1588d478c135;p=openembedded-core.git bitbake/build.py: Fix del_stamp work correctly after recent stamp function changes Signed-off-by: Richard Purdie --- 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): 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)