summaryrefslogtreecommitdiffstats
path: root/lib/bb/runqueue.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-06 19:48:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-10 12:54:03 +0000
commita1adbe7a3c752832220e7ba645ff770075730d18 (patch)
tree70a77a256ae3c749037b9e44ee7ecc7823ad2c8c /lib/bb/runqueue.py
parent03176f98185c0e1111fc7f5b31b7a6da17ce5875 (diff)
downloadbitbake-contrib-a1adbe7a3c752832220e7ba645ff770075730d18.tar.gz
bitbake/runqueue.py: Fix a bug where do_setscene dependencies would be ignored
(From Poky rev: df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/runqueue.py')
-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 c3e8e290e..b08d32bb8 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -886,7 +886,7 @@ class RunQueue:
logger.debug(2, "%s.%s is nostamp\n", fn, taskname)
return False
- if taskname.endswith("_setscene"):
+ if taskname != "do_setscene" and taskname.endswith("_setscene"):
return True
iscurrent = True