From d506db7eb6a9dff1a2d55a064be2ecbbd0740fd2 Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Thu, 25 Apr 2019 21:42:02 +0000 Subject: [PATCH] MFC r346056: Fix a typo when sanity checking in the bootstrap-tools target The path is incorrect for the linker in the error message. It should have been /usr/bin/ld, not /usr/bin/cc . --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ca5180bb30..10d4a5a84d0 100644 --- a/Makefile +++ b/Makefile @@ -570,7 +570,7 @@ universe-toolchain: .PHONY universe_prologue false; \ fi @if [ ! -e "${HOST_OBJTOP}/tmp/usr/bin/ld" ]; then \ - echo "Missing host linker at ${HOST_OBJTOP}/tmp/usr/bin/cc?" >&2; \ + echo "Missing host linker at ${HOST_OBJTOP}/tmp/usr/bin/ld?" >&2; \ false; \ fi @echo "--------------------------------------------------------------" -- 2.45.0