diff options
author | phk <phk@FreeBSD.org> | 2002-10-25 17:04:49 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-10-25 17:04:49 +0000 |
commit | 6856b7844c19d424a12e95eea0bd246c0459b9b7 (patch) | |
tree | cc43841352d71b094219201a46efdb676698d5db /usr.sbin/Makefile | |
parent | 01399b8c207ddaf7f40a671c80f24fe6337b5963 (diff) | |
download | FreeBSD-src-6856b7844c19d424a12e95eea0bd246c0459b9b7.zip FreeBSD-src-6856b7844c19d424a12e95eea0bd246c0459b9b7.tar.gz |
Explicitly list architectures supporting sysinstall
Diffstat (limited to 'usr.sbin/Makefile')
-rw-r--r-- | usr.sbin/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 3f39337..b237eb5 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -101,7 +101,6 @@ SUBDIR= IPXrouted \ sliplogin \ slstat \ spray \ - sysinstall \ syslogd \ tcpdchk \ tcpdmatch \ @@ -198,6 +197,10 @@ SUBDIR+=boot98cfg SUBDIR+=ofwdump .endif +.if ${MACHINE} == "i386" || ${MACHINE} == "alpha" || ${MACHINE} == "pc98" +SUBDIR+= sysinstall +.endif + .if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) SUBDIR+=keyserv .endif |