aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2019-04-09 16:17:31 +0000
committerEnji Cooper <ngie@FreeBSD.org>2019-04-09 16:17:31 +0000
commit78b78a6d3b93bdcfcc24ac1edf16ac331cd95639 (patch)
tree8b44fb5a313364afa9653435dd4fffe1bdddbceb /Makefile
parent22ccf855bfb771f59f5aaaae1d26d33679fec931 (diff)
downloadsrc-78b78a6d3b93bdcfcc24ac1edf16ac331cd95639.tar.gz
src-78b78a6d3b93bdcfcc24ac1edf16ac331cd95639.zip
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 . Reviewed by: emaste Approved by: emaste (mentor) MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D19852
Notes
Notes: svn path=/head/; revision=346056
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1eb3a5307e9b..054797b27bd7 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 "--------------------------------------------------------------"