Skip to content

Commit

Permalink
cccl: Respect silent flags.
Browse files Browse the repository at this point in the history
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 <joestringer@nicira.com>
  • Loading branch information
joestringer committed Dec 4, 2014
1 parent 5b7278a commit 819e3cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build-aux/cccl
Expand Up @@ -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

0 comments on commit 819e3cd

Please sign in to comment.