Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/tools tools: if MAKEVERBOSE >=2, noisy automake builds
details: https://anonhg.NetBSD.org/src/rev/4b56a8514a73
branches: trunk
changeset: 375376:4b56a8514a73
user: lukem <lukem%NetBSD.org@localhost>
date: Mon May 15 21:24:56 2023 +0000
description:
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).
diffstat:
tools/Makefile.gnuhost | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (18 lines):
diff -r 11d1581cdab1 -r 4b56a8514a73 tools/Makefile.gnuhost
--- a/tools/Makefile.gnuhost Mon May 15 21:13:07 2023 +0000
+++ b/tools/Makefile.gnuhost Mon May 15 21:24:56 2023 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index