diff options
author | tron <tron> | 2013-12-29 19:26:36 +0000 |
---|---|---|
committer | tron <tron> | 2013-12-29 19:26:36 +0000 |
commit | 5d26edcd6425e3433838db2ab70933aef032318d (patch) | |
tree | af4eb20df82b81ede8d6380399e4fb32ba048abe /textproc | |
parent | 95aecb5efe1dc8e2b94d4755f62df54949e860e7 (diff) | |
download | pkgsrc-5d26edcd6425e3433838db2ab70933aef032318d.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 |