Module Name:    src
Committed By:   lukem
Date:           Mon May 15 21:24:56 UTC 2023

Modified Files:
        src/tools: Makefile.gnuhost

Log Message:
tools: if MAKEVERBOSE >=2, noisy automake builds

Explicitly build with V=1 for MAKEVERBOSE >= 2
so that Makefile.gnuhost (automake) consumers
are more consistent with native builds.

(If the upstream is using AM_SILENT_RULES(yes)
then the default is V=0).


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/tools/Makefile.gnuhost

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tools/Makefile.gnuhost
diff -u src/tools/Makefile.gnuhost:1.54 src/tools/Makefile.gnuhost:1.55
--- src/tools/Makefile.gnuhost:1.54	Sun Aug 29 08:36:00 2021
+++ src/tools/Makefile.gnuhost	Mon May 15 21:24:56 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.gnuhost,v 1.54 2021/08/29 08:36:00 rillig Exp $
+#	$NetBSD: Makefile.gnuhost,v 1.55 2023/05/15 21:24:56 lukem Exp $
 #
 # Rules used when building a GNU host package.  Expects MODULE to be set.
 #
@@ -109,6 +109,8 @@ MAKE_ARGS+=	BISON=true DESTDIR= INSTALL=
 
 .if ${MAKEVERBOSE} < 2
 MAKE_ARGS+=	-s V=0
+.else
+MAKE_ARGS+=	V=1
 .endif
 
 ALL_TARGET?=	all

Reply via email to