Date: Wed, 26 Jan 2022 20:35:23 GMT From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: ddf312e8d756 - main - tools/build: Fix the error message used when a host tool is not present Message-ID: <202201262035.20QKZN7H006970@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=ddf312e8d7562baf031da95059c5e8857f180e05 commit ddf312e8d7562baf031da95059c5e8857f180e05 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2022-01-26 20:23:44 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2022-01-26 20:34:21 +0000 tools/build: Fix the error message used when a host tool is not present MFC after: 1 week --- tools/build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build/Makefile b/tools/build/Makefile index e39b418b744d..b1dca0c9314c 100644 --- a/tools/build/Makefile +++ b/tools/build/Makefile @@ -323,7 +323,7 @@ host-symlinks: @source_path="${_tool:S/:/ /:[1]}"; \ target_path="${DESTDIR}/bin/${_tool:S/:/ /:[2]}"; \ if [ ! -e "$${source_path}" ] ; then \ - echo "Host tool '${src_path}' is missing"; false; \ + echo "Host tool '$${source_path}' is missing"; false; \ fi; \ rm -f "$${target_path}"; \ ${_COPY_HOST_TOOL} "$${source_path}" "$${target_path}"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202201262035.20QKZN7H006970>