diff options
author | recht <recht@pkgsrc.org> | 2004-11-01 10:51:30 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-11-01 10:51:30 +0000 |
commit | 058c4aad83a3e7652740eb778f9104b5202b3def (patch) | |
tree | 684e1d213f7d903446d82084176fc41ec3ecf96c | |
parent | 7377cbf8f1e7ebb23ced59cc18958e1bee433e44 (diff) | |
download | pkgsrc-058c4aad83a3e7652740eb778f9104b5202b3def.tar.gz |
fix PLIST substitution for Darwin
-rw-r--r-- | textproc/icu/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/textproc/icu/Makefile b/textproc/icu/Makefile index 32b9fa21eec..00f9be2d82d 100644 --- a/textproc/icu/Makefile +++ b/textproc/icu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2004/08/04 08:47:22 recht Exp $ +# $NetBSD: Makefile,v 1.35 2004/11/01 10:51:30 recht Exp $ # DISTNAME= icu-3.0 @@ -50,6 +50,8 @@ PLIST_SUBST+= MH_NAME=mh-solaris . endif .elif ${OPSYS} == "IRIX" PLIST_SUBST+= MH_NAME=mh-irix +.elif ${OPSYS} == "Darwin" +PLIST_SUBST+= MH_NAME=mh-darwin .else # For unknown systems, set the filename to mh-unknown so that the user # gets a warning about missing files. |