https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=290010
--- Comment #15 from [email protected] --- A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/src/commit/?id=f7dc7d7af3683836fcca68018a678b242d2e2620 commit f7dc7d7af3683836fcca68018a678b242d2e2620 Author: Lexi Winter <[email protected]> AuthorDate: 2025-10-08 03:22:32 +0000 Commit: Lexi Winter <[email protected]> CommitDate: 2025-10-08 03:22:32 +0000 Makefile: Force DISTDIR=/ for (update-)packages The make(1) variable DISTDIR is used by both ports and src with a different meaning. Some users may set DISTDIR in /etc/make.conf for ports, which previously worked fine when building src since the src targets which used this variable were not very commonly used (mainly, make distributeworld). Unfortunately, with pkgbase becoming the default, this is no longer true since make (update-)packages invokes make stageworld, which is sensitive to DISTDIR, and these users find that their build now fails. A correct fix for this probably requires renaming one or both of the DISTDIR variables, but for now, work around the problem by setting DISTDIR=/ for the user-facing pkgbase targets, packages and update-package. Since setting DISTDIR doesn't work for these targets anyway, this should not break any existing configurations. MFC after: 1 week PR: 290010 Reported by: Oleh Vinichenko <[email protected]> Reviewed by: imp, bapt Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D52929 Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) -- You are receiving this mail because: You are on the CC list for the bug.
