From 9849f553025671ca86f33e4d8323a0a598ac4d3c Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Thu, 9 Aug 2018 15:59:38 -0400 Subject: [PATCH] Use --disable-intl on mingw32 builder --- master.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/master.cfg b/master.cfg index e6ec065..060921a 100644 --- a/master.cfg +++ b/master.cfg @@ -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)