Module: tools Branch: master Commit: e7ee02677cc9621782f07b26e4df261dd6b30316 URL: http://source.winehq.org/git/tools.git/?a=commit;h=e7ee02677cc9621782f07b26e...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Oct 5 11:16:26 2012 +0200
testbot/build: Use the standard MinGW compiler names in the Reconfig.pl script.
---
testbot/bin/Reconfig.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/testbot/bin/Reconfig.pl b/testbot/bin/Reconfig.pl index 60018d9..2a75e6f 100755 --- a/testbot/bin/Reconfig.pl +++ b/testbot/bin/Reconfig.pl @@ -86,7 +86,7 @@ sub BuildCross { my $Bits = $_[0];
- my $Host = ($Bits == 64 ? "x86_64-w64-mingw32" : "i686-pc-mingw32"); + my $Host = ($Bits == 64 ? "x86_64-w64-mingw32" : "i686-w64-mingw32"); mkdir "$DataDir/build-mingw$Bits" if (! -d "$DataDir/build-mingw$Bits"); system("cd $DataDir/build-mingw$Bits && " . "rm -rf * && " .