diff options
author | jkh <jkh@FreeBSD.org> | 1998-06-05 16:50:45 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-06-05 16:50:45 +0000 |
commit | e6bdbe311cfbf3d127bb0dbf6ca5009224887fd6 (patch) | |
tree | d1165cc3372688e40f76169b902c54d58c7eeabe /Makefile | |
parent | 2cc593abf5a9eeffede4aae12c81fd365c28e352 (diff) | |
download | FreeBSD-src-e6bdbe311cfbf3d127bb0dbf6ca5009224887fd6.zip FreeBSD-src-e6bdbe311cfbf3d127bb0dbf6ca5009224887fd6.tar.gz |
Add mtree to bootstrap targets now that peter has added a new
keyword to it which will otherwise call the next target to fall over
on transitioning systems.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.194 1998/06/04 06:25:22 charnier Exp $ +# $Id: Makefile,v 1.195 1998/06/04 12:02:52 jb Exp $ # # While porting to the another architecture include the bootstrap instead # of the normal build. @@ -493,7 +493,10 @@ bootstrap: cd ${.CURDIR}/usr.bin/lex; ${MAKE} bootstrap; \ ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ ${MAKE} ${MK_FLAGS} -DNOLIB all; \ - ${MAKE} ${MK_FLAGS} -DNOLIB -B install ${CLEANDIR} + ${MAKE} ${MK_FLAGS} -DNOLIB -B install ${CLEANDIR} ${OBJDIR} + cd ${.CURDIR}/usr.sbin/mtree; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ + ${MAKE} ${MK_FLAGS} all; \ + ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR} .if defined(DESTDIR) cd ${.CURDIR}/include && ${MAKE} copies .endif |