mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Compile mtree before it is used, this is a hack, but make world has
failed since new functionality was introduced in mtree.
This commit is contained in:
parent
12f66dd32f
commit
f55eda8752
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36722
1 changed files with 12 additions and 1 deletions
13
Makefile
13
Makefile
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# $Id: Makefile,v 1.198 1998/06/06 01:13:21 bde Exp $
|
||||
# $Id: Makefile,v 1.199 1998/06/06 04:39:41 jkoshy Exp $
|
||||
#
|
||||
# While porting to the another architecture include the bootstrap instead
|
||||
# of the normal build.
|
||||
|
@ -255,6 +255,17 @@ buildworld:
|
|||
${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} install; \
|
||||
${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} clean \
|
||||
)
|
||||
@echo
|
||||
@echo "--------------------------------------------------------------"
|
||||
@echo " Making mtools"
|
||||
@echo "--------------------------------------------------------------"
|
||||
( \
|
||||
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 \
|
||||
)
|
||||
.endif
|
||||
@echo
|
||||
@echo "--------------------------------------------------------------"
|
||||
|
|
Loading…
Reference in a new issue