https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=261215
Ed Maste <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #5 from Ed Maste <[email protected]> --- (In reply to Andriy Gapon from comment #2) Thanks for the diagnosis avg! We definitely need to avoid having :: in the path as we could encounter similar issues with other tools. I think something like this would also work: -STRICTTMPPATH= ${XPATH}:${BPATH}:${UNIVERSE_TOOLCHAIN_PATH} +STRICTTMPPATH= ${XPATH}:${BPATH} +.if defined(UNIVERSE_TOOLCHAIN_PATH) +STRICTTMPPATH!=${STRICTTMPPATH}:${UNIVERSE_TOOLCHAIN_PATH} +.endif but I'll add sjg@ on CC for advice on the canonical make way to address this. -- You are receiving this mail because: You are the assignee for the bug.
