diff options
author | Leon Woestenberg <leon@sidebranch.com> | 2010-01-02 01:49:55 +0100 |
---|---|---|
committer | Leon Woestenberg <leon@sidebranch.com> | 2010-01-02 02:00:26 +0100 |
commit | aa65a6a1b24dc670b9417f02c35821e31732f168 (patch) | |
tree | bef45f3150e307a74945bc82485e85ccba340044 /recipes/mozilla | |
parent | 3c72d9b7b19e4daa29758c5163b3a96bd66951a0 (diff) |
firefox-3.5.5: --disable-crashreporter
Crash reporter requires curl. However, instead of adding a DEPENDS
I chose disabling the crashreporter. Mozilla is probably not
interested in OE-induced crash reports.
However, in the future we might want to enable it.
DEPENDS += "curl" must than be added.
Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
Diffstat (limited to 'recipes/mozilla')
-rw-r--r-- | recipes/mozilla/firefox_3.5.5.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes/mozilla/firefox_3.5.5.bb b/recipes/mozilla/firefox_3.5.5.bb index 0292592871..56d6525a0d 100644 --- a/recipes/mozilla/firefox_3.5.5.bb +++ b/recipes/mozilla/firefox_3.5.5.bb @@ -1,5 +1,7 @@ DEPENDS += "cairo" +PR = "r2" + SRC_URI = "http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${PV}/source/firefox-${PV}.source.tar.bz2 \ file://jsautocfg.h \ file://security-cross.patch;patch=1 \ @@ -21,7 +23,7 @@ S = "${WORKDIR}/mozilla-1.9.1" inherit mozilla require firefox.inc -EXTRA_OECONF += " --enable-official-branding " +EXTRA_OECONF += " --enable-official-branding --disable-crashreporter" export HOST_LIBIDL_CONFIG = "${STAGING_BINDIR_NATIVE}/libIDL-config-2" |