diff options
author | peter <peter@FreeBSD.org> | 1998-05-27 15:40:35 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-05-27 15:40:35 +0000 |
commit | ab6173c22c6f44ca33dafd0f4d648941c5f7d570 (patch) | |
tree | 39eeec1a4861e2b3208066f750e7487fe9362fbb /Makefile | |
parent | 66f8d308b9183c6079bfc2b9122ce47da0562d2c (diff) | |
download | FreeBSD-src-ab6173c22c6f44ca33dafd0f4d648941c5f7d570.zip FreeBSD-src-ab6173c22c6f44ca33dafd0f4d648941c5f7d570.tar.gz |
Move objformat after binutils, otherwise we get chicken/egg problems when
building ELF. It may be that binutils and objformat need to both be moved
earlier in the list though, but that can wait till the dust settles.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.181 1998/05/26 20:12:43 sos Exp $ +# $Id: Makefile,v 1.182 1998/05/27 07:59:31 sos Exp $ # # While porting to the another architecture include the bootstrap instead # of the normal build. @@ -586,10 +586,10 @@ lib-tools: usr.bin/nm \ usr.bin/ranlib \ usr.bin/strip \ - usr.bin/objformat \ usr.bin/env \ gnu/usr.bin/binutils \ - usr.bin/uudecode + usr.bin/uudecode \ + usr.bin/objformat cd ${.CURDIR}/$d; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ ${MAKE} ${MK_FLAGS} all; \ ${MAKE} ${MK_FLAGS} -B install; \ |