summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-15 18:30:07 -0700
committerChris Larson <chris_larson@mentor.com>2010-12-15 18:30:07 -0700
commit4e25db1f8266279ad4a2967676dbd33068932fb7 (patch)
tree62fd1e875e2b2cfe37e3ac6c10314ce23c77bf7e
parented8d503e67045b87414d88ef40763a02ddd41da2 (diff)
downloadbitbake-4e25db1f8266279ad4a2967676dbd33068932fb7.tar.gz
runqueue: resurrect the fix in 90c2b6c
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index f84d9aa36..7dbf7d18b 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -938,7 +938,7 @@ class RunQueueExecute:
self.build_pipes[result[0]].close()
del self.build_pipes[result[0]]
if result[1] != 0:
- self.task_fail(task, result[1])
+ self.task_fail(task, result[1]>>8)
else:
self.task_complete(task)
self.stats.taskCompleted()