summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1998-07-07 18:33:11 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1998-07-07 18:33:11 +0000
commit50c3260806ae94a117f621c0283cbe9ec205c262 (patch)
tree82a6f3ac4080f9d05d54ca3ec8457c60ac85bdb6
parent1e8f3723ed42df9b6d3588059cb85ef131e8371b (diff)
add hppa support, fix the comment
-rw-r--r--usr.bin/Makefile6
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