svn commit: r222072 - head

Warner Losh imp at FreeBSD.org
Wed May 18 17:06:12 UTC 2011


Author: imp
Date: Wed May 18 17:06:11 2011
New Revision: 222072
URL: http://svn.freebsd.org/changeset/base/222072

Log:
  Clean up a loose end from the conversion from gnu ar/ranlib to the BSD
  one.  Without this, we don't have ar or randlib in the tool path,
  leading to much pain for some users.  This pain is exposed by the
  external toolchain enhancements that I'm working on.
  
  Submitted by:	John Hein (ages ago, and dropped on the floor by me: sorry)

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Wed May 18 16:56:36 2011	(r222071)
+++ head/Makefile.inc1	Wed May 18 17:06:11 2011	(r222072)
@@ -1552,7 +1552,8 @@ _xb-build-tools:
 _xb-cross-tools:
 .for _tool in \
     gnu/usr.bin/binutils \
-    gnu/usr.bin/cc
+    gnu/usr.bin/cc \
+    usr.bin/ar
 	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
 	cd ${.CURDIR}/${_tool}; \
 	${CDMAKE} DIRPRFX=${_tool}/ obj; \
@@ -1577,7 +1578,8 @@ _xi-cross-tools:
 	@echo "_xi-cross-tools"
 .for _tool in \
     gnu/usr.bin/binutils \
-    gnu/usr.bin/cc
+    gnu/usr.bin/cc \
+    usr.bin/ar
 	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
 	cd ${.CURDIR}/${_tool}; \
 	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}


More information about the svn-src-all mailing list