diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-06 19:48:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-06 19:48:47 +0000 |
commit | df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d (patch) | |
tree | b4f1ced4af21eafd135fee485a05184adc72f487 /bitbake/lib | |
parent | 66c6200ff34e8eeca5d1a689bbf9d6a83818248f (diff) | |
download | openembedded-core-df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d.tar.gz openembedded-core-df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d.tar.bz2 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/lib')
-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 16420b87a4..187720fc46 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 |