diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-07 18:33:11 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-07 18:33:11 +0000 |
commit | 50c3260806ae94a117f621c0283cbe9ec205c262 (patch) | |
tree | 82a6f3ac4080f9d05d54ca3ec8457c60ac85bdb6 | |
parent | 1e8f3723ed42df9b6d3588059cb85ef131e8371b (diff) |
add hppa support, fix the comment
-rw-r--r-- | usr.bin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index de878314068..7683de7029d 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.50 1998/07/07 17:47:44 art Exp $ +# $OpenBSD: Makefile,v 1.51 1998/07/07 18:33:10 mickey Exp $ .include <bsd.own.mk> @@ -27,8 +27,8 @@ SUBDIR= apply apropos arch asa at aucat audioctl awk banner basename bdes biff \ SUBDIR+=ypcat ypmatch ypwhich .endif -# Don't use the standard tool chain on the alpha or mips. -.if (${MACHINE_ARCH} != "alpha" && ${MACHINE_ARCH} != "mips" && ${MACHINE_ARCH} != "powerpc") +# Don't use the standard tool chain on the alpha, mips, powerpc, and hppa. +.if (${MACHINE_ARCH} != "alpha" && ${MACHINE_ARCH} != "mips" && ${MACHINE_ARCH} != "powerpc" && ${MACHINE_ARCH} != "hppa") SUBDIR+= ar nm ranlib size strip strings .endif |