diff options
author | ghen <ghen@pkgsrc.org> | 2006-10-03 12:09:14 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2006-10-03 12:09:14 +0000 |
commit | 267f3855ceebf7f1845c2f38b6b3f3960e80613f (patch) | |
tree | 4e846ac58377663676161519b46f76b4923f543d /www/seamonkey/options.mk | |
parent | b8114c56bb2663f69472407e5e8536cf2b593f9b (diff) | |
download | pkgsrc-267f3855ceebf7f1845c2f38b6b3f3960e80613f.tar.gz |
PKG_SUPPORTED_OPTIONS must be set before bsd.options.mk is included.
Diffstat (limited to 'www/seamonkey/options.mk')
-rw-r--r-- | www/seamonkey/options.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/seamonkey/options.mk b/www/seamonkey/options.mk index dea96ca8858..582bc7fd92f 100644 --- a/www/seamonkey/options.mk +++ b/www/seamonkey/options.mk @@ -1,8 +1,12 @@ -# $NetBSD: options.mk,v 1.2 2006/09/24 16:21:33 salo Exp $ +# $NetBSD: options.mk,v 1.3 2006/10/03 12:09:14 ghen Exp $ PKG_OPTIONS_VAR = PKG_OPTIONS.gecko PKG_SUPPORTED_OPTIONS = debug +.if ( ${MOZILLA_BIN} == "firefox-bin" || ${MOZILLA_BIN} == "thunderbird-bin" ) +PKG_SUPPORTED_OPTIONS += official-mozilla-branding +.endif + .include "../../mk/bsd.options.mk" # this .if test looks backward, but the missing options disables debug, @@ -11,10 +15,6 @@ PKG_SUPPORTED_OPTIONS = debug CONFIGURE_ARGS+= --disable-debug .endif -.if ( ${MOZILLA_BIN} == "firefox-bin" || ${MOZILLA_BIN} == "thunderbird-bin" ) -PKG_SUPPORTED_OPTIONS += official-mozilla-branding -.endif - # Enable Official mozilla.org Branding for Firefox or Thunderbird. # Note that you cannot distribute builds with Official Branding # without permission of the Mozilla Foundation. |