summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2013-01-06 03:32:34 +0000
committerryoon <ryoon@pkgsrc.org>2013-01-06 03:32:34 +0000
commit6677919c4545378f48578012115d77befd61c142 (patch)
tree7be38d977e6000453ddb24f7ae07f7f013e7d678
parent422bc84d089c23b07a1d852f76cae8e05d8d53b7 (diff)
downloadpkgsrc-6677919c4545378f48578012115d77befd61c142.tar.gz
Fix build on OpenBSD/amd64 5.2.
-rw-r--r--devel/libdaemon/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libdaemon/Makefile b/devel/libdaemon/Makefile
index c39bf01c813..6a21e990ae1 100644
--- a/devel/libdaemon/Makefile
+++ b/devel/libdaemon/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2012/10/31 11:17:11 asau Exp $
+# $NetBSD: Makefile,v 1.8 2013/01/06 03:32:34 ryoon Exp $
#
DISTNAME= libdaemon-0.14
@@ -25,6 +25,6 @@ post-install:
.include "../../mk/bsd.pkg.mk"
-.if ${OPSYS} == "NetBSD" && ${OS_VERSION:M4.*} != ""
+.if (${OPSYS} == "NetBSD" && ${OS_VERSION:M4.*} != "") || (${OPSYS} == "OpenBSD")
BUILDLINK_TRANSFORM+= rm:-Wl,--no-undefined
.endif