diff options
author | adrianp <adrianp@pkgsrc.org> | 2008-09-18 21:14:59 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2008-09-18 21:14:59 +0000 |
commit | ce0f370e069c0cfa5a8a5f31f2c20a75e657cbcf (patch) | |
tree | b5018b78cab4d96603855b43c047bf4596a7d814 /www/seamonkey | |
parent | 4c54bb85358892571e431f35b2d9700fc241dff1 (diff) | |
download | pkgsrc-ce0f370e069c0cfa5a8a5f31f2c20a75e657cbcf.tar.gz |
Invert check for jemalloc options so firefox can actually build on some
platforms that don't like jemalloc.
Diffstat (limited to 'www/seamonkey')
-rw-r--r-- | www/seamonkey/options.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/seamonkey/options.mk b/www/seamonkey/options.mk index 5c11dee0c2e..fda72726e1e 100644 --- a/www/seamonkey/options.mk +++ b/www/seamonkey/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.12 2008/09/15 18:22:15 adrianp Exp $ +# $NetBSD: options.mk,v 1.13 2008/09/18 21:14:59 adrianp Exp $ # used by www/firefox/Makefile.common # used by www/firefox3/Makefile.common # used by www/seamonkey/Makefile.common @@ -21,7 +21,7 @@ PKG_SUGGESTED_OPTIONS += mozilla-jemalloc # so expose an option to allow users to build FF without it. # NOTE: This currently has only been known to happen on SunOS 5.11 x86 # as a full list of systems is unknown the default is to still use it -.if !empty(PKG_OPTIONS:Mmozilla-jemalloc) +.if empty(PKG_OPTIONS:Mmozilla-jemalloc) CONFIGURE_ARGS+= --disable-jemalloc .endif |