Fix the ${BINFORMAT} definition problem during 'make {build}world'. The

wrong switches were being passed to 'make' that caused sys.mk to come from
the /usr/share/mk location but the bsd.*.mk files to come from the
source tree in src/share/mk.  This was bound to break sooner or later.

Submitted by:	Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
This commit is contained in:
Peter Wemm 1997-08-31 21:06:40 +00:00
parent 021352282c
commit cf68c4fbd8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=28968

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.140 1997/08/25 19:40:53 bde Exp $
# $Id: Makefile,v 1.141 1997/08/26 14:15:25 peter Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include
@ -223,9 +223,9 @@ buildworld:
@echo "--------------------------------------------------------------"
mkdir -p ${WORLDTMP}/usr/bin
cd ${.CURDIR}/usr.bin/make && \
${IBMAKE} -I${.CURDIR}/share/mk \
${IBMAKE} -m${.CURDIR}/share/mk \
${OBJDIR} clean cleandepend depend && \
${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} \
${IBMAKE} -m${.CURDIR}/share/mk ${MK_FLAGS} \
all install clean cleandepend
@echo
@echo "--------------------------------------------------------------"