The branch main has been updated by markj:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=ddf312e8d7562baf031da95059c5e8857f180e05

commit ddf312e8d7562baf031da95059c5e8857f180e05
Author:     Mark Johnston <[email protected]>
AuthorDate: 2022-01-26 20:23:44 +0000
Commit:     Mark Johnston <[email protected]>
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}"

Reply via email to