Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Aug 2024 16:14:37 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 261215] objcopy fails to work on itself which make buildworld with NO_CLEAN fail
Message-ID:  <bug-261215-227-gxvgDFF6YX@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-261215-227@https.bugs.freebsd.org/bugzilla/>

index | next in thread | previous in thread | raw e-mail

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=261215

Ed Maste <emaste@freebsd.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sjg@FreeBSD.org

--- Comment #5 from Ed Maste <emaste@freebsd.org> ---
(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.

home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-261215-227-gxvgDFF6YX>