Gentoo Archives: gentoo-commits

From: Ian Stakenvicius <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/mozilla:crossdev commit in: www-client/firefox/
Date: Wed, 23 Dec 2015 21:33:31
Message-Id: 1450906399.09ea0e19d337189f089403623e2b0be4053eba8b.axs@gentoo
1 commit: 09ea0e19d337189f089403623e2b0be4053eba8b
2 Author: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 23 21:32:21 2015 +0000
4 Commit: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 23 21:33:19 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=09ea0e19
7
8 fix logic error causing USE=-hwaccel to die
9
10 www-client/firefox/firefox-43.0.ebuild | 4 +++-
11 1 file changed, 3 insertions(+), 1 deletion(-)
12
13 diff --git a/www-client/firefox/firefox-43.0.ebuild b/www-client/firefox/firefox-43.0.ebuild
14 index 24ec37a..d0229f5 100644
15 --- a/www-client/firefox/firefox-43.0.ebuild
16 +++ b/www-client/firefox/firefox-43.0.ebuild
17 @@ -298,9 +298,11 @@ src_install() {
18 || die
19
20 # Augment this with hwaccel prefs
21 - use hwaccel && cat "${FILESDIR}"/gentoo-hwaccel-prefs.js-1 >> \
22 + if use hwaccel ; then
23 + cat "${FILESDIR}"/gentoo-hwaccel-prefs.js-1 >> \
24 "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \
25 || die
26 + fi
27
28 # Set default path to search for dictionaries.
29 echo "pref(\"spellchecker.dictionary_path\", ${DICTPATH});" \