summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>2000-09-07 03:59:34 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>2000-09-07 03:59:34 +0000
commit80643877923e4017438f399c86229df870dffaff (patch)
tree00bf9a07dbb8c26c5beb0280818e51186be20ddf /share
parent19e4235262146ff54dfc770cd84e8f85c7850aeb (diff)
Make it official, powerpc does have shared libraries.
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.own.mk7
1 files changed, 3 insertions, 4 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index 5da756e09a3..8c74d07540d 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: bsd.own.mk,v 1.33 2000/07/03 16:59:58 marc Exp $
+# $OpenBSD: bsd.own.mk,v 1.34 2000/09/07 03:59:33 rahnds Exp $
# $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $
# Host-specific overrides
@@ -96,9 +96,8 @@ 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} == "hppa") || \
- (${MACHINE_ARCH} == "m88k")
+.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "vax") || \
+ (${MACHINE_ARCH} == "hppa") || (${MACHINE_ARCH} == "m88k")
NOPIC=
.endif