diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2017-04-19 09:46:22 -0400 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2017-04-19 09:46:22 -0400 |
commit | cf37cef0707775facd7057de7e1803b419659820 (patch) | |
tree | eb851b1dd7ba8785f333961641e942c7ace2a91e /eclass/mozconfig-v6.52.eclass | |
parent | dev-perl/CSS-Packer: Bump to version 2.30.0 (diff) | |
download | gentoo-cf37cef0707775facd7057de7e1803b419659820.tar.gz gentoo-cf37cef0707775facd7057de7e1803b419659820.tar.bz2 gentoo-cf37cef0707775facd7057de7e1803b419659820.zip |
mozconfig-v6.52.eclass: fix a missed gtk3 -> force-gtk3 flag migration
Diffstat (limited to 'eclass/mozconfig-v6.52.eclass')
-rw-r--r-- | eclass/mozconfig-v6.52.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mozconfig-v6.52.eclass b/eclass/mozconfig-v6.52.eclass index 783a0ed80999..f66ed060dc53 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 |