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: yocto-4.0~42666 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5da9747024cb59e6cd5422c7917b1588d478c135;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 968e2ea5621..f127796c077 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)