Bug 1607103 - Allow forkserver on FreeBSD r=gsvelto

Differential Revision: https://phabricator.services.mozilla.com/D58729

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Greg V 2020-01-16 11:26:45 +00:00
Родитель 157c39b737
Коммит 90233062e1
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -640,7 +640,8 @@ option('--enable-forkserver', env='MOZ_ENABLE_FORKSERVER', help='Enable fork ser
@depends('--enable-forkserver', target)
def forkserver_flag(value, target):
if target.os == 'Android' or \
(target.os == 'GNU' and target.kernel == 'Linux'):
(target.os == 'GNU' and target.kernel == 'Linux') or \
target.os == 'FreeBSD':
return bool(value)
pass