Module Name:    src
Committed By:   apb
Date:           Tue Apr  7 20:46:21 UTC 2009

Modified Files:
        src/distrib/sets: sets.subr

Log Message:
Print debug messages only when MAKEVERBOSE >= 3, not when
it is >= 2.  MAKEVERBOSE=2 is teh default, and the messages
are too noisy.


To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 src/distrib/sets/sets.subr

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

Modified files:

Index: src/distrib/sets/sets.subr
diff -u src/distrib/sets/sets.subr:1.82 src/distrib/sets/sets.subr:1.83
--- src/distrib/sets/sets.subr:1.82	Sat Apr  4 10:08:08 2009
+++ src/distrib/sets/sets.subr	Tue Apr  7 20:46:20 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: sets.subr,v 1.82 2009/04/04 10:08:08 apb Exp $
+#	$NetBSD: sets.subr,v 1.83 2009/04/07 20:46:20 apb Exp $
 #
 
 #
@@ -227,7 +227,7 @@
 # In each file, a record consists of a path and a System Package name,
 # separated by whitespace. E.g.,
 #
-# 	# $NetBSD: sets.subr,v 1.82 2009/04/04 10:08:08 apb Exp $
+# 	# $NetBSD: sets.subr,v 1.83 2009/04/07 20:46:20 apb Exp $
 # 	.			base-sys-root	[keyword[,...]]
 # 	./altroot		base-sys-root
 # 	./bin			base-sys-root
@@ -303,7 +303,7 @@
 #
 list_set_files()
 {
-	if [ ${MAKEVERBOSE:-2} -lt 2 ]; then
+	if [ ${MAKEVERBOSE:-2} -lt 3 ]; then
 		verbose=false
 	else
 		verbose=true

Reply via email to