Use --disable-intl on mingw32 builder
This commit is contained in:
parent
33768d2d15
commit
9849f55302
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue