]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake/build.py: Fix del_stamp work correctly after recent stamp function changes
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 7 Jan 2011 14:03:27 +0000 (14:03 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 7 Jan 2011 14:03:27 +0000 (14:03 +0000)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/build.py

index 968e2ea562150515ef0aef1042b90896248f412c..f127796c077f290c4e51dbe6564a4603e4ea7f84 100644 (file)
@@ -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)