From 4e25db1f8266279ad4a2967676dbd33068932fb7 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 15 Dec 2010 18:30:07 -0700 Subject: [PATCH] runqueue: resurrect the fix in 90c2b6c Signed-off-by: Chris Larson --- lib/bb/runqueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py index f84d9aa368d..7dbf7d18b03 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() -- 2.47.3