git: ddf312e8d756 - main - tools/build: Fix the error message used when a host tool is not present

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Wed, 26 Jan 2022 20:35:23 UTC
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}"