From f0267aff33d52363372a055b2d21ad975ac0abb3 Mon Sep 17 00:00:00 2001 From: liuhaitao Date: Sun, 22 Mar 2020 10:14:59 +0800 Subject: [PATCH] tools/testbuild.sh: suppress lots of stdout log from configure.sh Redirect configure.sh stdout to /dev/null to suppress lots of log since configure.sh behaviour updated. Signed-off-by: liuhaitao --- tools/testbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testbuild.sh b/tools/testbuild.sh index 4ddbf4bd79..c1c0ffd2bb 100755 --- a/tools/testbuild.sh +++ b/tools/testbuild.sh @@ -157,7 +157,7 @@ function distclean { function configure { echo " Configuring..." - ./tools/configure.sh ${HOPTION} $config + ./tools/configure.sh ${HOPTION} $config 1>/dev/null if [ "X$toolchain" != "X" ]; then setting=`grep _TOOLCHAIN_ $nuttx/.config | grep -v CONFIG_ARCH_TOOLCHAIN_* | grep =y`