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



On Wed, 30 Aug 2023, Christos Zoulas wrote:


Can you try:

MKVARS="$( ${MAKE} -B -f ${rundir}/mkvars.mk mkvars MAKEVERBOSE=0  | ${SED} -e 's,=.*,,' | ${XARGS} )"


I've now tried

MKVARS="$( ${MAKE} -B -f ${rundir}/mkvars.mk MAKEVERBOSE=0 mkvars | ${SED} -e 's,=.*,,' | ${XARGS} )"


and

MKVARS="$( ${MAKE} -B -f ${rundir}/mkvars.mk mkvars MAKEVERBOSE=0 | ${SED} -e 's,=.*,,' | ${XARGS} )"


(the first example has the variable specified after the target which I believe is the correct way according to MAKE(1))


But neither om them works



Home | Main Index | Thread Index | Old Index