summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-10-20 14:07:13 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-10-20 14:07:13 +0000
commitbda354bdcb58114d0b3af376e95fd103343f5145 (patch)
tree82587ca06d393ac50f2dd385a47e2e3465a674c5
parent0f70d4782c0d390247b718bbe2792315bf3fcf8b (diff)
downloadbitbake-bda354bdcb58114d0b3af376e95fd103343f5145.tar.gz
runqueue.py: Fix nostamp flag handling (from Poky)
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index b697cee53..62bd10ae2 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -805,7 +805,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