Date: Tue, 17 Aug 2021 19:07:06 GMT From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: a3ddd7c92b99 - main - _worldtmp: Fix some sub-makes not working with make -n Message-ID: <202108171907.17HJ76kd002674@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by bdrewery: URL: https://cgit.FreeBSD.org/src/commit/?id=a3ddd7c92b9947ac4518fb0b55c2275422d0d627 commit a3ddd7c92b9947ac4518fb0b55c2275422d0d627 Author: Bryan Drewery <bdrewery@FreeBSD.org> AuthorDate: 2021-08-17 19:06:14 +0000 Commit: Bryan Drewery <bdrewery@FreeBSD.org> CommitDate: 2021-08-17 19:06:40 +0000 _worldtmp: Fix some sub-makes not working with make -n --- Makefile.inc1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 2b631c2311f0..9209f0ef053c 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1046,11 +1046,11 @@ _worldtmp: .PHONY @touch ${WORLDTMP}/${.TARGET} # We can't use mtree to create the worldtmp directories since it may not be # available on the target system (this happens e.g. when building on non-FreeBSD) - cd ${.CURDIR}/tools/build; \ + ${_+_}cd ${.CURDIR}/tools/build; \ ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy installdirs # In order to build without inheriting $PATH we need to add symlinks to the host # tools in $WORLDTMP for the tools that we don't build during bootstrap-tools - cd ${.CURDIR}/tools/build; \ + ${_+_}cd ${.CURDIR}/tools/build; \ ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy host-symlinks _legacy:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108171907.17HJ76kd002674>