From 450c8794a6ef743c00ae27e57214b7863bf9c972 Mon Sep 17 00:00:00 2001
From: Jan Mojzis <jan.mojzis@gmail.com>
Date: Sat, 30 Jul 2016 11:39:17 +0200
Subject: output to standard output while building.

 The upstream build system puts all output in a log file rather than to standard
 output. This can cause build timeouts on slow architectures and if the build
 truely hangs makes it difficult to determine where it hung. Modify the build
 system to output to standard output as it goes along.

Author: Peter Michael Green <plugwash@debian.org>
---
 do | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/do b/do
index 7876fc6..d629b29 100755
--- a/do
+++ b/do
@@ -38,7 +38,7 @@ mkdir -p "$bin"
 mkdir -p "$lib"
 mkdir -p "$include"
 
-exec >"$top/log"
+exec | tee "$top/log"
 exec 2>&1
 exec 5>"$top/data"
 exec </dev/null
