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

MFC after:	1 week
This commit is contained in:
Mark Johnston 2022-01-26 15:23:44 -05:00
parent e5b431fc0c
commit ddf312e8d7

View File

@ -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}"