summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1998-08-28 21:44:25 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1998-08-28 21:44:25 +0000
commitad76f54e7833a337ceeabb681f4ff5744c2ac7ed (patch)
treea962c4c9f33dd2b517a9a6c9c8c627f69a384713
parent3aa8646dec5da22aead51440581d3eb710cb206e (diff)
NOPIC for hppa (yet)
-rw-r--r--share/mk/bsd.own.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index 3a27a01a560..d39339b7061 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: bsd.own.mk,v 1.21 1998/07/05 04:38:58 rahnds Exp $
+# $OpenBSD: bsd.own.mk,v 1.22 1998/08/28 21:44:24 mickey Exp $
# $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $
# Host-specific overrides
@@ -83,7 +83,7 @@ STATIC?= -static
# don't try to generate PIC versions of libraries on machines
# which don't support PIC.
.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "powerpc") || \
- (${MACHINE_ARCH} == "vax")
+ (${MACHINE_ARCH} == "vax") || (${MACHINE_ARCH} == "hppa")
NOPIC=
.endif