commit: 04721b2beff6fded933d62870973aceea491511d
Author: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 14 14:40:22 2018 +0000
Commit: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
CommitDate: Tue Aug 14 19:04:50 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04721b2b
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.
eclass/mozcoreconf-v6.eclass | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/eclass/mozcoreconf-v6.eclass b/eclass/mozcoreconf-v6.eclass
index 64e0e3d66d3..403740c1241 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
####################################