From cd872118e712e04e082d4473691d41c59b7f5391 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 1 Oct 2008 13:55:17 +0000 Subject: bitbake: Fix nostamp flag handling bug git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5368 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- bitbake-dev/lib/bb/runqueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake-dev') diff --git a/bitbake-dev/lib/bb/runqueue.py b/bitbake-dev/lib/bb/runqueue.py index 4130b50641..26e4c32f88 100644 --- a/bitbake-dev/lib/bb/runqueue.py +++ b/bitbake-dev/lib/bb/runqueue.py @@ -825,7 +825,7 @@ class RunQueue: return False # If its a 'nostamp' task, it's not current taskdep = self.dataCache.task_deps[fn] - if 'nostamp' in taskdep and task in taskdep['nostamp']: + if 'nostamp' in taskdep and taskname in taskdep['nostamp']: bb.msg.debug(2, bb.msg.domain.RunQueue, "%s.%s is nostamp\n" % (fn, taskname)) return False -- cgit v1.2.3-54-g00ecf