summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/ChangeLog3
-rw-r--r--bitbake/lib/bb/runqueue.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/ChangeLog b/bitbake/ChangeLog
index 4bac05c497..fbf86c6496 100644
--- a/bitbake/ChangeLog
+++ b/bitbake/ChangeLog
@@ -1,4 +1,7 @@
1Changes in Bitbake 1.8.x: 1Changes in Bitbake 1.8.x:
2 - Correctly redirect stdin when forking
3 - If parsing errors are found, exit, too many users miss the errors
4 - Remove supriours PREFERRED_PROVIDER warnings
2 5
3Changes in Bitbake 1.8.4: 6Changes in Bitbake 1.8.4:
4 - Make sure __inherit_cache is updated before calling include() (from Michael Krelin) 7 - Make sure __inherit_cache is updated before calling include() (from Michael Krelin)
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index ef3cbd3067..f64c115e75 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -95,7 +95,7 @@ class RunQueue:
95 # Nothing to do 95 # Nothing to do
96 return 96 return
97 97
98 bb.msg.note(1, bb.msg.domain.RunQueue, "Preparing Runqueue") 98 bb.msg.note(1, bb.msg.domain.RunQueue, "Preparing runqueue")
99 99
100 for task in range(len(taskData.tasks_name)): 100 for task in range(len(taskData.tasks_name)):
101 fnid = taskData.tasks_fnid[task] 101 fnid = taskData.tasks_fnid[task]