commit:     98b63e8d09a28cc63a0496bb4cee286ff16e9cd6
Author:     Ian Stakenvicius <axs <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 23 21:32:21 2015 +0000
Commit:     Ian Stakenvicius <axs <AT> gentoo <DOT> org>
CommitDate: Wed Dec 23 21:32:21 2015 +0000
URL:        https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=98b63e8d

fix logic error causing USE=-hwaccel to die

 www-client/firefox/firefox-43.0.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/www-client/firefox/firefox-43.0.ebuild 
b/www-client/firefox/firefox-43.0.ebuild
index 24ec37a..d0229f5 100644
--- a/www-client/firefox/firefox-43.0.ebuild
+++ b/www-client/firefox/firefox-43.0.ebuild
@@ -298,9 +298,11 @@ src_install() {
                || die
 
        # Augment this with hwaccel prefs
-       use hwaccel && cat "${FILESDIR}"/gentoo-hwaccel-prefs.js-1 >> \
+       if use hwaccel ; then
+               cat "${FILESDIR}"/gentoo-hwaccel-prefs.js-1 >> \
                
"${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \
                || die
+       fi
 
        # Set default path to search for dictionaries.
        echo "pref(\"spellchecker.dictionary_path\", ${DICTPATH});" \

Reply via email to