View | Details | Raw Unified | Return to bug 275030 | Differences between
and this patch

Collapse All | Expand All

(-)b/Makefile.inc1 (-1 / +1 lines)
Lines 2577-2583 ${_bt}-link-${_tool}: .PHONY Link Here
2577
	if [ ! -e "$${source_path}" ] ; then \
2577
	if [ ! -e "$${source_path}" ] ; then \
2578
		echo "Cannot find host tool '${_tool}'"; false; \
2578
		echo "Cannot find host tool '${_tool}'"; false; \
2579
	fi; \
2579
	fi; \
2580
	cp -pf "$${source_path}" "${WORLDTMP}/legacy/bin/${_tool}"
2580
	cp -f "$${source_path}" "${WORLDTMP}/legacy/bin/${_tool}"
2581
${_bt}-links: ${_bt}-link-${_tool}
2581
${_bt}-links: ${_bt}-link-${_tool}
2582
.endfor
2582
.endfor
2583
2583
(-)b/tools/build/Makefile (-2 / +1 lines)
Lines 319-325 _LINK_HOST_TOOL= ln -sfn Link Here
319
# When building on FreeBSD we always copy the host tools instead of linking
319
# When building on FreeBSD we always copy the host tools instead of linking
320
# into WORLDTMP to avoid issues with incompatible libraries (see r364030).
320
# into WORLDTMP to avoid issues with incompatible libraries (see r364030).
321
# Note: we could create links if we don't intend to update the current machine.
321
# Note: we could create links if we don't intend to update the current machine.
322
_COPY_HOST_TOOL=	cp -pf
322
_COPY_HOST_TOOL=	cp -f
323
.else
323
.else
324
# However, this is not necessary on Linux/macOS. Additionally, copying the host
324
# However, this is not necessary on Linux/macOS. Additionally, copying the host
325
# tools to another directory with cp -p results in freezes on macOS Big Sur for
325
# tools to another directory with cp -p results in freezes on macOS Big Sur for
326
- 

Return to bug 275030