diff options
author | peter <peter@FreeBSD.org> | 1997-08-31 21:06:40 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-08-31 21:06:40 +0000 |
commit | 3a01dc9b52272deb7ccc9d441fff93cb888a5144 (patch) | |
tree | 88015b650de2e2d8593b84e7285bd90903d66b53 /Makefile | |
parent | 56d1dd4b534da0cbf40a97fa1e425ca7fcd59a96 (diff) | |
download | FreeBSD-src-3a01dc9b52272deb7ccc9d441fff93cb888a5144.zip FreeBSD-src-3a01dc9b52272deb7ccc9d441fff93cb888a5144.tar.gz |
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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 "--------------------------------------------------------------" |