From: Richard Purdie Date: Thu, 6 Jan 2011 19:48:47 +0000 (+0000) Subject: bitbake/runqueue.py: Fix a bug where do_setscene dependencies would be ignored X-Git-Tag: 2011-1~2975 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d;p=openembedded-core.git bitbake/runqueue.py: Fix a bug where do_setscene dependencies would be ignored Signed-off-by: Richard Purdie --- 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