diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-06-09 07:19:13 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-06-09 07:19:13 +0000 |
| commit | 70c9f9745b8dabce33317fae6a7dc60d1bb2c7b6 (patch) | |
| tree | 2487f62b1ecaae58413ea86fad8a384c4970fc43 | |
| parent | 42d494a30b08a1df5d7d1bd692172d96167be546 (diff) | |
Notes
| -rw-r--r-- | Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.199 1998/06/06 04:39:41 jkoshy Exp $ +# $Id: Makefile,v 1.200 1998/06/07 10:50:28 sos Exp $ # # While porting to the another architecture include the bootstrap instead # of the normal build. @@ -257,14 +257,15 @@ buildworld: ) @echo @echo "--------------------------------------------------------------" - @echo " Making mtools" + @echo " Making mtree" @echo "--------------------------------------------------------------" + mkdir -p ${WORLDTMP}/usr/sbin ${WORLDTMP}/mtree ( \ cd ${.CURDIR}/usr.sbin/mtree; \ MAKEOBJDIRPREFIX=""; unset MAKEOBJDIRPREFIX; \ - ${MAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} all; \ - ${MAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} install; \ - ${MAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} clean \ + export MAKEOBJDIR=${WORLDTMP}/mtree; \ + ${BMAKE} ${MK_FLAGS} all; \ + ${BMAKE} ${MK_FLAGS} -B install clean \ ) .endif @echo |
