diff options
author | tron <tron@pkgsrc.org> | 2013-12-29 19:26:36 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2013-12-29 19:26:36 +0000 |
commit | 30c7df1b01d1fbc3ce0eceab52f03e7b783358c6 (patch) | |
tree | af4eb20df82b81ede8d6380399e4fb32ba048abe /textproc | |
parent | 3baa73be738a02fe4b837e4c0669b5b4ae37376b (diff) | |
download | pkgsrc-30c7df1b01d1fbc3ce0eceab52f03e7b783358c6.tar.gz |
Fix build under Mac OS X.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/mdocml/Makefile | 6 |
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 |