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 triedMKVARS="$( ${MAKE} -B -f ${rundir}/mkvars.mk MAKEVERBOSE=0 mkvars | ${SED} -e 's,=.*,,' | ${XARGS} )"
andMKVARS="$( ${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