From df8569b4d89ce83e3cafd87f2f37b795d1bfbd6d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 6 Jan 2011 19:48:47 +0000 Subject: bitbake/runqueue.py: Fix a bug where do_setscene dependencies would be ignored Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb') 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 -- cgit v1.2.3