aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-10-01 13:55:17 +0000
committerRichard Purdie <richard@openedhand.com>2008-10-01 13:55:17 +0000
commitcd872118e712e04e082d4473691d41c59b7f5391 (patch)
tree5908df0f16275b283ab57dcf7c8c57687a48ea42 /bitbake
parent4089a43b644d3f8fec54adb47627a9df5d28fbbf (diff)
downloadopenembedded-core-contrib-cd872118e712e04e082d4473691d41c59b7f5391.tar.gz
bitbake: Fix nostamp flag handling bug
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5368 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index b697cee536..62bd10ae24 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/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