From 04721b2beff6fded933d62870973aceea491511d Mon Sep 17 00:00:00 2001 From: Ian Stakenvicius Date: Tue, 14 Aug 2018 10:40:22 -0400 Subject: 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(-) (limited to 'eclass') 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 #################################### -- cgit v1.2.3-65-gdbad