summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1998-07-05 04:38:59 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1998-07-05 04:38:59 +0000
commit77d23c6270b091dbfc1394a6564a72b97a39378c (patch)
tree4f9c7822a4b6a592ab0ad47ea42104e7e0775c7a /share
parent8553bdfe4ac2d5ea7c51264428a88fa3b76f487a (diff)
Powerpc port now support profiled libraries, thus NOPROFILE= is
not set anymore. The code is left for future architecures, If it is needed again.
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.own.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index 43d9f131d2a..3a27a01a560 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: bsd.own.mk,v 1.20 1998/03/12 16:54:21 art Exp $
+# $OpenBSD: bsd.own.mk,v 1.21 1998/07/05 04:38:58 rahnds Exp $
# $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $
# Host-specific overrides
@@ -89,7 +89,9 @@ NOPIC=
# don't try to generate PROFILED versions of libraries on machines
# which don't support profiling.
-.if (${MACHINE_ARCH} == "powerpc")
+# to add this back use the following line
+#.if (${MACHINE_ARCH} == "UNSUPPORTED_ARCH")
+.if 0
NOPROFILE=
.endif