[Qemu-devel] [RISU PATCH 01/10] build-all-arches: drop -t (for tty) from docker invocation

Alex Bennée posted 10 patches 7 years, 11 months ago
[Qemu-devel] [RISU PATCH 01/10] build-all-arches: drop -t (for tty) from docker invocation
Posted by Alex Bennée 7 years, 11 months ago
This prevents gcc from going nuts with colorizing the compiler output
which looks particularly ugly when invoked via compilation-mode.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 build-all-archs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build-all-archs b/build-all-archs
index 63918e5..fa2ac90 100755
--- a/build-all-archs
+++ b/build-all-archs
@@ -61,7 +61,7 @@ done
 # If docker is enabled we just brute force the various images until we
 # can set the one that has a workable cross compiler.
 
-DOCKER_RUN="docker run --rm -t -u $(id -u) -v $(pwd):$(pwd) -w $(pwd)"
+DOCKER_RUN="docker run --rm -u $(id -u) -v $(pwd):$(pwd) -w $(pwd)"
 
 program_exists() {
     if [ ! -z "$docker_tags" ]; then
-- 
2.14.2