From 8f872ee0e815b27ac6fc13345bb3c80b7e71d083 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Tue, 28 Feb 2012 15:16:09 +1000 Subject: configure: fixed stray output from endian.test when not verbose The output of building and running config.tests are generally silent unless -verbose is passed to configure. However, there was one place in endian.test where a check for $VERBOSE was missed, leading to confusing output like: Creating qmake. Please wait... rm -f endiantest.o rm -f *~ core *.core rm -f endiantest rm -f Makefile rm -f endiantest.o rm -f *~ core *.core rm -f endiantest rm -f Makefile Change-Id: Idabe85f2b188ed9da713392d116d4d2853be2189 Reviewed-by: Jason McDonald --- config.tests/unix/endian.test | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'config.tests/unix') diff --git a/config.tests/unix/endian.test b/config.tests/unix/endian.test index 6c5c311888..a662011a27 100755 --- a/config.tests/unix/endian.test +++ b/config.tests/unix/endian.test @@ -41,7 +41,11 @@ elif strings - $binary | grep MostSignificantByteFirst >/dev/null 2>&1; then fi # make clean as this tests is compiled for both the host and the target -$MAKE distclean +if [ "$VERBOSE" = "yes" ]; then + $MAKE distclean +else + $MAKE distclean >/dev/null 2>&1 +fi # done if [ "$ENDIAN" = "LITTLE" ]; then -- cgit v1.2.3