diff options
| author | lukem <lukem@NetBSD.org> | 2020-06-13 10:49:17 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2020-06-13 10:49:17 +0000 |
| commit | c90f017ca8f6a4cf4de8451817374014ef0df1df (patch) | |
| tree | 785485f4c845f3106d1c3449d09f7a2cbb6c6860 /tools/Makefile.gnuhost | |
| parent | fcd0a3cdbfdf1a9aa2bbd4536e305f9a0d3030b7 (diff) | |
tools: configure --silent if MAKEVERBOSE == 0
Diffstat (limited to 'tools/Makefile.gnuhost')
| -rw-r--r-- | tools/Makefile.gnuhost | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/Makefile.gnuhost b/tools/Makefile.gnuhost index 8389c1505c7..3d268cdbf47 100644 --- a/tools/Makefile.gnuhost +++ b/tools/Makefile.gnuhost @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.gnuhost,v 1.52 2020/06/13 08:12:16 lukem Exp $ +# $NetBSD: Makefile.gnuhost,v 1.53 2020/06/13 10:49:17 lukem Exp $ # # Rules used when building a GNU host package. Expects MODULE to be set. # @@ -77,6 +77,11 @@ CONFIGURE_ARGS+=--prefix=${TOOLDIR} CONFIGURE_ARGS+=--disable-shared .endif +.if ${MAKEVERBOSE} == 0 +CONFIGURE_ARGS+=--silent +.endif + + .if ${MAKE_PROGRAM} == ${MAKE} .ifndef _NOWRAPPER # Some systems have a small ARG_MAX. On such systems, prevent Make |
