This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new f0267af tools/testbuild.sh: suppress lots of stdout log from
configure.sh
f0267af is described below
commit f0267aff33d52363372a055b2d21ad975ac0abb3
Author: liuhaitao <[email protected]>
AuthorDate: Sun Mar 22 10:14:59 2020 +0800
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 <[email protected]>
---
tools/testbuild.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testbuild.sh b/tools/testbuild.sh
index 4ddbf4b..c1c0ffd 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`