summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/runqueue.py2
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