Francois Gouget : testbot/build: Use the standard MinGW compiler names in the Build.pl script.

Alexandre Julliard julliard at winehq.org
Wed Mar 27 13:09:01 CDT 2013


Module: tools
Branch: master
Commit: 77322aa20f775bb2aac62ff2764f5893281ef628
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=77322aa20f775bb2aac62ff2764f5893281ef628

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Wed Mar 27 16:31:29 2013 +0100

testbot/build: Use the standard MinGW compiler names in the Build.pl script.

The same fix was applied to the Reconfig.pl script previously.

---

 testbot/bin/build/Build.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/testbot/bin/build/Build.pl b/testbot/bin/build/Build.pl
index 21899af..2964049 100755
--- a/testbot/bin/build/Build.pl
+++ b/testbot/bin/build/Build.pl
@@ -177,7 +177,7 @@ sub BuildTestExecutable
   if ($NeedConfigure)
   {
     InfoMsg "Reconfigure $Bits-bit crossbuild\n";
-    my $Host = ($Bits == 64 ? "x86_64-w64-mingw32" : "i686-pc-mingw32");
+    my $Host = ($Bits == 64 ? "x86_64-w64-mingw32" : "i686-w64-mingw32");
     system("( cd $DataDir/build-mingw$Bits && set -x && " .
            "  ../wine/configure --host=$Host --with-wine-tools=../build-native --without-x --without-freetype " .
            ") >>$LogDir/Build.log 2>&1");




More information about the wine-cvs mailing list