From 27e8412b4a6909f1c79ad057fa65f11fb7b5bf53 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Tue, 5 Dec 2017 22:02:21 +0100 Subject: [PATCH] buildgcc: Hide stderr output of getopt test Change-Id: I03c38de3a3b88d569d629be7483eb53164cf136a Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/22738 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- util/crossgcc/buildgcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 780d87a165..76ed1be9bf 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -899,7 +899,7 @@ export PATH=$PATH:. getopt - > /dev/null 2>/dev/null || gcc -o getopt getopt.c # parse parameters.. try to find out whether we're running GNU getopt -getoptbrand="$(getopt -V | sed -e '1!d' -e 's,^\(......\).*,\1,')" +getoptbrand="$(getopt -V 2>/dev/null | sed -e '1!d' -e 's,^\(......\).*,\1,')" if [ "${getoptbrand}" = "getopt" ]; then # Detected GNU getopt that supports long options. args=$(getopt -l version,help,clean,directory:,bootstrap,bootstrap-only,platform:,languages:,package:,jobs:,destdir:,savetemps,scripting,ccache,supported:,urls,nocolor -o Vhcd:bBp:l:P:j:D:tSys:un -- "$@")