diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2018-08-14 10:40:22 -0400 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2018-08-14 15:04:50 -0400 |
commit | 04721b2beff6fded933d62870973aceea491511d (patch) | |
tree | d1907d1929d055bee028719d06593477a2377e25 /eclass/mozcoreconf-v6.eclass | |
parent | media-libs/mesa: Add lm_sensors? ( gallium ) to REQUIRED_USE (diff) | |
download | gentoo-04721b2beff6fded933d62870973aceea491511d.tar.gz gentoo-04721b2beff6fded933d62870973aceea491511d.tar.bz2 gentoo-04721b2beff6fded933d62870973aceea491511d.zip |
eclass/mozcoreconf-v6.eclass: adjust setting for building comm targets
Thunderbird and Seamonkey from v60 onwards are now built from the 'comm/mail'
and 'comm/suite' application targets respectively, instead of the old
'mail' and 'suite'. This change is not backwards compatible with mozilla
versions prior to v60.
Diffstat (limited to 'eclass/mozcoreconf-v6.eclass')
-rw-r--r-- | eclass/mozcoreconf-v6.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/mozcoreconf-v6.eclass b/eclass/mozcoreconf-v6.eclass index 64e0e3d66d33..403740c12410 100644 --- a/eclass/mozcoreconf-v6.eclass +++ b/eclass/mozcoreconf-v6.eclass @@ -142,11 +142,13 @@ mozconfig_init() { seamonkey) # Must create the initial mozconfig to enable application : >.mozconfig || die "initial mozconfig creation failed" - mozconfig_annotate "" --enable-application=suite ;; + # NOTE--this is not compatible with mozilla prior to v60 + mozconfig_annotate "" --enable-application=comm/suite ;; *thunderbird) # Must create the initial mozconfig to enable application : >.mozconfig || die "initial mozconfig creation failed" - mozconfig_annotate "" --enable-application=mail ;; + # NOTE--this is not compatible with mozilla prior to v60 + mozconfig_annotate "" --enable-application=comm/mail ;; esac #################################### |