svn commit: r346711 - stable/12
Enji Cooper
ngie at FreeBSD.org
Thu Apr 25 21:42:03 UTC 2019
Author: ngie
Date: Thu Apr 25 21:42:02 2019
New Revision: 346711
URL: https://svnweb.freebsd.org/changeset/base/346711
Log:
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 .
Modified:
stable/12/Makefile
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/Makefile
==============================================================================
--- stable/12/Makefile Thu Apr 25 21:28:28 2019 (r346710)
+++ stable/12/Makefile Thu Apr 25 21:42:02 2019 (r346711)
@@ -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 "--------------------------------------------------------------"
More information about the svn-src-all
mailing list