From 3ce13dbc233b7c063c08cf33e391da4f718be6ad Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Tue, 25 Aug 2020 13:30:14 +0000 Subject: [PATCH] Use bootstrapped install(1) install of tools/install.sh in world stage This should be noticeably faster due to fewer processes being forked and also handles other flags such as -S or writing to METALOG. Reviewed By: brooks Differential Revision: https://reviews.freebsd.org/D26039 --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index ac2bcf7b22b..910f0017faf 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -765,7 +765,7 @@ KTMAKE= \ # world stage WMAKEENV= ${CROSSENV} \ - INSTALL="sh ${.CURDIR}/tools/install.sh" \ + INSTALL="${INSTALL_CMD} -U" \ PATH=${TMPPATH} \ SYSROOT=${WORLDTMP} -- 2.45.0