summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Stakenvicius <axs@gentoo.org>2017-04-19 09:46:22 -0400
committerIan Stakenvicius <axs@gentoo.org>2017-04-19 09:46:22 -0400
commitcf37cef0707775facd7057de7e1803b419659820 (patch)
treeeb851b1dd7ba8785f333961641e942c7ace2a91e
parent31f823bcfefd139c2f50eb4d3f281f856f4868cf (diff)
downloadgentoo-cf37cef0707775facd7057de7e1803b419659820.tar.gz
gentoo-cf37cef0707775facd7057de7e1803b419659820.tar.xz
mozconfig-v6.52.eclass: fix a missed gtk3 -> force-gtk3 flag migration
-rw-r--r--eclass/mozconfig-v6.52.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mozconfig-v6.52.eclass b/eclass/mozconfig-v6.52.eclass
index 783a0ed8099..f66ed060dc5 100644
--- a/eclass/mozconfig-v6.52.eclass
+++ b/eclass/mozconfig-v6.52.eclass
@@ -262,9 +262,9 @@ mozconfig_config() {
local toolkit="cairo-gtk2"
local toolkit_comment=""
if [[ -n ${MOZCONFIG_OPTIONAL_GTK3} ]]; then
- if use gtk3; then
+ if use force-gtk3; then
toolkit="cairo-gtk3"
- toolkit_comment="gtk3 use flag"
+ toolkit_comment="force-gtk3 use flag"
fi
fi
if [[ -n ${MOZCONFIG_OPTIONAL_GTK2ONLY} ]]; then