NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: toolchain/57584: Running build.sh with -N 3 or -N 4 causes debug logging to be included in the MKVARS shell variable in distrib/sets/sets.subr



The following reply was made to PR toolchain/57584; it has been noted by GNATS.

From: Palle Lyckegaard <palle%lyckegaard.dk@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc: 
Subject: Re: toolchain/57584: Running build.sh with -N 3 or -N 4 causes debug
 logging to be included in the MKVARS shell variable in
 distrib/sets/sets.subr
Date: Fri, 18 Aug 2023 18:27:10 +0000 (UTC)

 On Sun, 13 Aug 2023, gnats-admin%netbsd.org@localhost wrote:
 
 >
 >> Category:       toolchain
 >> Responsible:    toolchain-manager
 >> Synopsis:       Running build.sh with -N 3 or -N 4 causes debug logging to be included in the MKVARS shell variable in distrib/sets/sets.subr
 >> Arrival-Date:   Sun Aug 13 18:00:00 +0000 2023
 >
 >
 
 I've managed to fix the issue with the following patch (removing lines 
 with the string 'echo'):
 
 diff --git a/distrib/sets/sets.subr b/distrib/sets/sets.subr
 index 6f2223181713..61546167b956 100644
 --- a/distrib/sets/sets.subr
 +++ b/distrib/sets/sets.subr
 @@ -129,7 +129,7 @@ done
 
   IFS=$oIFS
 
 -MKVARS="$( MAKEVERBOSE= ${MAKE} -B -f ${rundir}/mkvars.mk mkvars | ${SED} 
 -e 's,=.*,,' | ${XARGS} )"
 +MKVARS="$( MAKEVERBOSE= ${MAKE} -B -f ${rundir}/mkvars.mk mkvars | ${SED} 
 -e 's,=.*,,' -e 's,echo.*,,'| ${XARGS} )"
 
   #####
 
 


Home | Main Index | Thread Index | Old Index