Bug 1501093 - Permit overriding enable-calendar in SeaMonkey via mozconfig. r=rjl

This commit is contained in:
Bill Gianopoulos 2018-10-20 12:30:27 -04:00
Родитель 78aef38453
Коммит 6e85907d62
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -8,7 +8,11 @@
# =========================================================
# = Lightning extension
# =========================================================
option('--enable-calendar',
@depends(application)
def calendar_default(app):
return app[0].endswith('/suite')
option('--enable-calendar', default=calendar_default,
help='Enable building of the Lightning calendar extension')

Просмотреть файл

@ -13,8 +13,6 @@ imply_option('MOZ_PLACES', True)
imply_option('MOZ_SERVICES_SYNC', False)
imply_option('MOZ_ALLOW_LEGACY_EXTENSIONS', True)
imply_option('--enable-calendar', True)
@depends(application)
def is_comm(app):