The legacy boot stuff is available only on i386, not all architectures

which aren't the alpha.  Test for MACHINE_ARCH == i386 rather than
MACHINE_ARCH != alpha.
This commit is contained in:
Warner Losh 1999-03-01 01:09:06 +00:00
parent b9a3993d60
commit af59b932a7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44355

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile.inc1,v 1.63 1999/02/14 13:56:14 des Exp $
# $Id: Makefile.inc1,v 1.64 1999/02/27 03:18:10 jkh Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include
@ -916,7 +916,7 @@ legacy-install:
@echo "--------------------------------------------------------------"
cd ${.CURDIR}/libexec/rtld-aout; ${MAKE} -DNOMAN install
@echo
.if ${MACHINE_ARCH} != "alpha"
.if ${MACHINE_ARCH} == "i386"
@echo "--------------------------------------------------------------"
@echo ">>> Installing legacy boot"
@echo "--------------------------------------------------------------"