svn commit: r346056 - head

Enji Cooper ngie at FreeBSD.org
Tue Apr 9 16:17:32 UTC 2019


Author: ngie
Date: Tue Apr  9 16:17:31 2019
New Revision: 346056
URL: https://svnweb.freebsd.org/changeset/base/346056

Log:
  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

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Tue Apr  9 16:16:10 2019	(r346055)
+++ head/Makefile	Tue Apr  9 16:17:31 2019	(r346056)
@@ -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