diff options
author | Richard Purdie <richard@openedhand.com> | 2008-10-01 13:55:17 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-10-01 13:55:17 +0000 |
commit | cd872118e712e04e082d4473691d41c59b7f5391 (patch) | |
tree | 5908df0f16275b283ab57dcf7c8c57687a48ea42 /bitbake/lib/bb/runqueue.py | |
parent | 4089a43b644d3f8fec54adb47627a9df5d28fbbf (diff) | |
download | poky-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/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
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: | |||
805 | return False | 805 | return False |
806 | # If its a 'nostamp' task, it's not current | 806 | # If its a 'nostamp' task, it's not current |
807 | taskdep = self.dataCache.task_deps[fn] | 807 | taskdep = self.dataCache.task_deps[fn] |
808 | if 'nostamp' in taskdep and task in taskdep['nostamp']: | 808 | if 'nostamp' in taskdep and taskname in taskdep['nostamp']: |
809 | bb.msg.debug(2, bb.msg.domain.RunQueue, "%s.%s is nostamp\n" % (fn, taskname)) | 809 | bb.msg.debug(2, bb.msg.domain.RunQueue, "%s.%s is nostamp\n" % (fn, taskname)) |
810 | return False | 810 | return False |
811 | 811 | ||