Use --disable-intl on mingw32 builder

This commit is contained in:
Sergio Durigan Junior 2018-08-09 15:59:38 -04:00
parent 33768d2d15
commit 9849f55302

View file

@ -1217,7 +1217,9 @@ class RunTestGDBPlainFedoraW64MingW32_c64notest (BuildAndTestGDBFactory):
"""Compiling on Fedora for 64-bit using MingW32, without tests."""
def __init__ (self, **kwargs):
self.extra_conf_flags = [ '--host=x86_64-w64-mingw32',
'--target=x86_64-w64-mingw32' ]
'--target=x86_64-w64-mingw32',
# Needed because the build is currently breaking.
'--disable-intl' ]
self.run_testsuite = False
BuildAndTestGDBFactory.__init__ (self, **kwargs)