From: Joe Stringer Date: Thu, 4 Dec 2014 00:34:08 +0000 (-0800) Subject: cccl: Respect silent flags. X-Git-Tag: v2.4.0~829 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=819e3cdec67332b3cfad771f6856924a1f2e7130 cccl: Respect silent flags. Automake sets $V to tell the compiler whether to print verbose messages as it compiles or not. Add support for this variable in cccl, allowing more quiet build output on windows if the build is configured with --silent or the developer runs make V=0. Signed-off-by: Joe Stringer --- diff --git a/build-aux/cccl b/build-aux/cccl index b1828059c..2a4dccc52 100644 --- a/build-aux/cccl +++ b/build-aux/cccl @@ -202,6 +202,8 @@ else opts=$linkopt fi -echo "$prog $opts" +if test x$V = x1 ; then + echo "$prog $opts" +fi exec $prog $opts exit 0