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/bb/runqueue.py | |
| parent | 66c6200ff34e8eeca5d1a689bbf9d6a83818248f (diff) | |
| download | poky-df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d.tar.gz | |
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/bb/runqueue.py')
| -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: | |||
| 922 | logger.debug(2, "%s.%s is nostamp\n" % (fn, taskname)) | 922 | logger.debug(2, "%s.%s is nostamp\n" % (fn, taskname)) |
| 923 | return False | 923 | return False |
| 924 | 924 | ||
| 925 | if taskname.endswith("_setscene"): | 925 | if taskname != "do_setscene" and taskname.endswith("_setscene"): |
| 926 | return True | 926 | return True |
| 927 | 927 | ||
| 928 | iscurrent = True | 928 | iscurrent = True |
