Bug 1290647 - FreeBSD bootstrap: Prefer GCC if base Clang is too old after bug 1286204. r=glandium

MozReview-Commit-ID: 36Yn6n5bOeQ

--HG--
extra : transplant_source : FT%8F%90%1D%F86%81%A6%A1%E0%8CM%12%A6%F6%17_%CF%E7
This commit is contained in:
Jan Beich 2016-07-30 06:09:54 +00:00
parent fb7e6844d2
commit a562e7c4ec

View File

@ -34,8 +34,8 @@ class FreeBSDBootstrapper(BaseBootstrapper):
if not self.which('unzip'):
self.packages.append('unzip')
# gcc in base is too old
if self.flavor == 'freebsd' and self.version < 9:
# GCC 4.2 or Clang 3.4 in base are too old
if self.flavor == 'freebsd' and self.version < 11:
self.browser_packages.append('gcc')
def pkg_install(self, *packages):