https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=275030
Dag-Erling Smørgrav <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|[email protected] |[email protected] Status|New |In Progress CC| |[email protected] Flags| |mfc-stable15?, | |mfc-stable14? --- Comment #41 from Dag-Erling Smørgrav <[email protected]> --- Our cp has had -N for a while now, but that doesn't really help. The cp command used to copy bootstrap tools is the host cp. Replacing `cp -pf` with `cp -Npf` will fix building with /usr/obj on NFS on recent FreeBSD, but break building on older FreeBSD or non-FreeBSD hosts (except recent macOS) whose cp command does not have a -N option. A better solution is probably to replace `cp -pf` with `install -p`. We already assume that the host has a working install command. https://reviews.freebsd.org/D53751 -- You are receiving this mail because: You are the assignee for the bug.
