bitbake/runqueue.py: Fix a bug where do_setscene dependencies would be ignored

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-01-06 19:48:47 +00:00
parent 66c6200ff3
commit df8569b4d8

View File

@@ -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