diff options
author | imp <imp@FreeBSD.org> | 2011-05-18 17:06:11 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2011-05-18 17:06:11 +0000 |
commit | bc246c3978c8c42d336afd629eed2caf1fd4697d (patch) | |
tree | d15afe0059f00293c748c27e744c28473b86ee26 /Makefile.inc1 | |
parent | d85d9c08767850035cab0143951e210a3f6a5434 (diff) | |
download | FreeBSD-src-bc246c3978c8c42d336afd629eed2caf1fd4697d.zip FreeBSD-src-bc246c3978c8c42d336afd629eed2caf1fd4697d.tar.gz |
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)
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 4aa53da..1e613af 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -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} |