summaryrefslogtreecommitdiff
path: root/bitbake
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-06 19:48:47 +0000
commitdf8569b4d89ce83e3cafd87f2f37b795d1bfbd6d (patch)
treeb4f1ced4af21eafd135fee485a05184adc72f487 /bitbake
parent66c6200ff34e8eeca5d1a689bbf9d6a83818248f (diff)
downloadopenembedded-core-df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d.tar.gz
openembedded-core-df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d.tar.bz2
openembedded-core-df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d.tar.xz
openembedded-core-df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d.zip
bitbake/runqueue.py: Fix a bug where do_setscene dependencies would be ignored
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 16420b87a..187720fc4 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -922,7 +922,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