diff options
| author | rillig <rillig@NetBSD.org> | 2021-08-29 08:36:00 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2021-08-29 08:36:00 +0000 |
| commit | 18ff5b940ccdc89385a50357bb5607bc63a4eeab (patch) | |
| tree | 11c464bc933a16b7e20d0b348c174242ea2a6d51 /tools | |
| parent | c52db5f23a48c06162e861fcf1d4d3dca4d5acaa (diff) | |
tools: in non-verbose mode, build the tools silently
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/Makefile.gnuhost | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/Makefile.gnuhost b/tools/Makefile.gnuhost index 3d268cdbf47..a9d3417fc6d 100644 --- a/tools/Makefile.gnuhost +++ b/tools/Makefile.gnuhost @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.gnuhost,v 1.53 2020/06/13 10:49:17 lukem Exp $ +# $NetBSD: Makefile.gnuhost,v 1.54 2021/08/29 08:36:00 rillig Exp $ # # Rules used when building a GNU host package. Expects MODULE to be set. # @@ -101,14 +101,14 @@ BUILD_COMMAND= ${BUILD_ENV} ${MAKE} ${MAKE_ARGS} # sub-gmake's get them, otherwise tools/gcc tries to build libgcc and # fails. it also uses "env -i" to entirely clear out MAKEFLAGS. GMAKE_J_ARGS?= ${MAKEFLAGS:[*]:M*-j*:C/.*(-j ?[0-9]*).*/\1/W} -BUILD_COMMAND= /usr/bin/env -i ${BUILD_ENV} ${MAKE_ARGS} ${TOOL_GMAKE} ${GMAKE_J_ARGS} -e ${MAKE_ARGS} +BUILD_COMMAND= /usr/bin/env -i ${BUILD_ENV} ${MAKE_ARGS:N-*} ${TOOL_GMAKE} ${GMAKE_J_ARGS} -e ${MAKE_ARGS} .endif MAKE_ARGS+= BISON=true DESTDIR= INSTALL=${HOST_INSTALL_FILE:Q} .if ${MAKEVERBOSE} < 2 -MAKE_ARGS+= V=0 +MAKE_ARGS+= -s V=0 .endif ALL_TARGET?= all |
