diff options
author | schmonz <schmonz> | 2002-07-28 14:39:04 +0000 |
---|---|---|
committer | schmonz <schmonz> | 2002-07-28 14:39:04 +0000 |
commit | d06c7801fdb9840407f8ad0da9c53ee77283e54c (patch) | |
tree | 40d96d3ed03e891bbde8e38b6ec6efc68141dc59 /lang | |
parent | b80eaf873ae2be14cf9e8768a9cad5a79076b14b (diff) | |
download | pkgsrc-d06c7801fdb9840407f8ad0da9c53ee77283e54c.tar.gz |
Avoid including bsd.pkg.mk twice on not-Darwin.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/sun-jre13/Makefile.common | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lang/sun-jre13/Makefile.common b/lang/sun-jre13/Makefile.common index d6b688f943a..7b84ba804f5 100644 --- a/lang/sun-jre13/Makefile.common +++ b/lang/sun-jre13/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.3 2002/07/28 13:16:46 schmonz Exp $ +# $NetBSD: Makefile.common,v 1.4 2002/07/28 14:39:04 schmonz Exp $ # MASTER_SITES is very special, and must end in "=": CATEGORIES= lang @@ -62,11 +62,12 @@ do-install: cd ${WRKSRC} && ${PAX} -rw . ${PREFIX} . endif -.if ${OPSYS} != "Darwin" +.if ${OPSYS} == "Darwin" +.include "../../mk/bsd.pkg.mk" +.else .include "../../emulators/suse_linux/Makefile.application" .endif -.include "../../mk/bsd.pkg.mk" # These need to be after bsd.pkg.mk .if ${OPSYS} == "Linux" |