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 | |
parent | 4089a43b644d3f8fec54adb47627a9df5d28fbbf (diff) | |
download | openembedded-core-cd872118e712e04e082d4473691d41c59b7f5391.tar.gz openembedded-core-cd872118e712e04e082d4473691d41c59b7f5391.tar.bz2 openembedded-core-cd872118e712e04e082d4473691d41c59b7f5391.tar.xz openembedded-core-cd872118e712e04e082d4473691d41c59b7f5391.zip |
bitbake: Fix nostamp flag handling bug
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5368 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | bitbake-dev/lib/bb/runqueue.py | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake-dev/lib/bb/runqueue.py b/bitbake-dev/lib/bb/runqueue.py index 4130b5064..26e4c32f8 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 diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index b697cee53..62bd10ae2 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 |