summaryrefslogtreecommitdiff
path: root/textproc/mdocml
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2013-12-29 19:26:36 +0000
committertron <tron@pkgsrc.org>2013-12-29 19:26:36 +0000
commit30c7df1b01d1fbc3ce0eceab52f03e7b783358c6 (patch)
treeaf4eb20df82b81ede8d6380399e4fb32ba048abe /textproc/mdocml
parent3baa73be738a02fe4b837e4c0669b5b4ae37376b (diff)
downloadpkgsrc-30c7df1b01d1fbc3ce0eceab52f03e7b783358c6.tar.gz
Fix build under Mac OS X.
Diffstat (limited to 'textproc/mdocml')
-rw-r--r--textproc/mdocml/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/mdocml/Makefile b/textproc/mdocml/Makefile
index 7747ce7419a..9d9135d8d51 100644
--- a/textproc/mdocml/Makefile
+++ b/textproc/mdocml/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.39 2013/12/29 19:19:03 tron Exp $
+# $NetBSD: Makefile,v 1.40 2013/12/29 19:26:36 tron Exp $
DISTNAME= mdocml-1.12.2
CATEGORIES= textproc devel
@@ -21,8 +21,8 @@ SUBST_SED.roff= -e 's,Xr roff,Xr mandoc-roff,g'
.include "../../mk/bsd.fast.prefs.mk"
-# Solaris 10 and newer do not support static binaries
-.if ${OPSYS} == "SunOS"
+# Mac OS X and Solaris 10 and newer do not support static binaries.
+.if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS"
MAKE_FLAGS+= STATIC=
.endif