diff options
author | markd <markd@pkgsrc.org> | 2011-01-23 11:18:27 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2011-01-23 11:18:27 +0000 |
commit | ba9f0f7186edde8945d1501d2d528a5a7f5de6e9 (patch) | |
tree | 2122ba007d7ca0ec6e4197b504b1bc16d026063d /devel | |
parent | ab9494ee9b936e2463204d885ce0ce0389e80670 (diff) | |
download | pkgsrc-ba9f0f7186edde8945d1501d2d528a5a7f5de6e9.tar.gz |
set FREEBL_NO_DEPEND=0 in MAKE_ENV otherwise Linux2.6 defaults to
FREEBL_NO_DEPEND=1 and files not in PLIST are installed.
OKed by tnn.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/nss/Makefile | 6 | ||||
-rw-r--r-- | devel/xulrunner/Makefile | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/devel/nss/Makefile b/devel/nss/Makefile index 9f26ef289f2..9994c773692 100644 --- a/devel/nss/Makefile +++ b/devel/nss/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2010/10/21 10:31:00 tnn Exp $ +# $NetBSD: Makefile,v 1.40 2011/01/23 11:18:51 markd Exp $ .include "../../devel/xulrunner/dist.mk" PKGNAME= nss-${NSS_RELEASE}${MOZ_BRANCH_MINOR} @@ -17,6 +17,10 @@ USE_TOOLS+= gmake perl pax pkg-config .include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Linux" +MAKE_ENV+= FREEBL_NO_DEPEND=0 +.endif + .if ${OBJECT_FMT} == "ELF" SO_SUFFIX= so .elif ${OBJECT_FMT} == "Mach-O" diff --git a/devel/xulrunner/Makefile b/devel/xulrunner/Makefile index e811f7423b3..64f2214e08f 100644 --- a/devel/xulrunner/Makefile +++ b/devel/xulrunner/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.46 2011/01/13 13:53:25 wiz Exp $ +# $NetBSD: Makefile,v 1.47 2011/01/23 11:18:27 markd Exp $ .include "dist.mk" PKGNAME= xulrunner-${MOZ_BRANCH}${MOZ_BRANCH_MINOR} @@ -26,6 +26,8 @@ CONFIGURE_ARGS+= --enable-libxul ALL_ENV+= MOZILLA_PKG_NAME=xulrunner +MAKE_ENV+= FREEBL_NO_DEPEND=0 + .include "mozilla-common.mk" .include "options.mk" |