From 187d8221fb7e0b4785a8e760c648975a5ae812b7 Mon Sep 17 00:00:00 2001 From: Michael 'Mickey' Lauer Date: Sat, 8 Mar 2008 12:00:06 +0000 Subject: cooker: fix traceback when using -b and -f together --- lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py index ab3178942..c4dabf004 100644 --- a/lib/bb/cooker.py +++ b/lib/bb/cooker.py @@ -641,7 +641,7 @@ class BBCooker: # Remove stamp for target if force mode active if self.configuration.force: bb.msg.note(2, bb.msg.domain.RunQueue, "Remove stamp %s, %s" % (task, fn)) - bb.build.del_stamp('do_%s' % task, bbfile_data) + bb.build.del_stamp('do_%s' % task, self.status, fn) # Setup taskdata structure taskdata = bb.taskdata.TaskData(self.configuration.abort) -- cgit 1.2.3-korg