summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake-dev/lib/bb/runqueue.py2
-rw-r--r--bitbake/lib/bb/runqueue.py2
2 files changed, 2 insertions, 2 deletions
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:
825 return False 825 return False
826 # If its a 'nostamp' task, it's not current 826 # If its a 'nostamp' task, it's not current
827 taskdep = self.dataCache.task_deps[fn] 827 taskdep = self.dataCache.task_deps[fn]
828 if 'nostamp' in taskdep and task in taskdep['nostamp']: 828 if 'nostamp' in taskdep and taskname in taskdep['nostamp']:
829 bb.msg.debug(2, bb.msg.domain.RunQueue, "%s.%s is nostamp\n" % (fn, taskname)) 829 bb.msg.debug(2, bb.msg.domain.RunQueue, "%s.%s is nostamp\n" % (fn, taskname))
830 return False 830 return False
831 831
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