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.
This commit is contained in:
Ian Stakenvicius
2018-08-14 10:40:22 -04:00
parent 040ff87a62
commit 04721b2bef

View File

@@ -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
####################################