diff options
author | jb <jb@FreeBSD.org> | 1998-09-05 11:37:14 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-09-05 11:37:14 +0000 |
commit | 78636253d7341ba65f5f3f2ec26809a358e15392 (patch) | |
tree | 5041d7b1d42158b73239c55244770de4455003e7 /Makefile.inc1 | |
parent | b1cb75a632e6de0e89c49331efb8268888eec4cd (diff) | |
download | FreeBSD-src-78636253d7341ba65f5f3f2ec26809a358e15392.zip FreeBSD-src-78636253d7341ba65f5f3f2ec26809a358e15392.tar.gz |
Change i386 in a few paths to ${MACHINE} to support MACHINE=pc98.
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index eef0503..ffedf05 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc1,v 1.4 1998/09/01 06:07:47 jb Exp $ +# $Id: Makefile.inc1,v 1.5 1998/09/03 21:34:31 jb Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -761,7 +761,7 @@ _scrnmaps= share/syscons/scrnmaps _linux= lkm/linux .endif .if ${OBJFORMAT} == "aout" -_netboot= sys/i386/boot/netboot +_netboot= sys/${MACHINE}/boot/netboot .endif BTMAKEFLAGS= ${MK_FLAGS} -D_BUILD_TOOLS @@ -907,7 +907,7 @@ legacy-build: @echo "--------------------------------------------------------------" @echo " Building legacy boot" @echo "--------------------------------------------------------------" - cd ${.CURDIR}/sys/i386/boot; \ + cd ${.CURDIR}/sys/${MACHINE}/boot; \ ${XMAKE} -DNOMAN depend; ${XMAKE} -DNOMAN all; .endif @@ -937,7 +937,7 @@ legacy-install: @echo "--------------------------------------------------------------" @echo " Installing legacy boot" @echo "--------------------------------------------------------------" - cd ${.CURDIR}/sys/i386/boot; ${MAKE} -DNOMAN install + cd ${.CURDIR}/sys/${MACHINE}/boot; ${MAKE} -DNOMAN install .endif |