Print debug messages only when MAKEVERBOSE >= 3, not when
it is >= 2. MAKEVERBOSE=2 is teh default, and the messages are too noisy.
This commit is contained in:
parent
a992ea7967
commit
f328a72950
@ -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 @@ SUBST="${SUBST};s#@MACHINE@#${MACHINE}#g"
|
||||
# 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 @@ SUBST="${SUBST};s#@MACHINE@#${MACHINE}#g"
|
||||
#
|
||||
list_set_files()
|
||||
{
|
||||
if [ ${MAKEVERBOSE:-2} -lt 2 ]; then
|
||||
if [ ${MAKEVERBOSE:-2} -lt 3 ]; then
|
||||
verbose=false
|
||||
else
|
||||
verbose=true
|
||||
|
Loading…
Reference in New Issue
Block a user