Module: wine Branch: master Commit: 0b801a4215bb566603aa0f2ac7a590644b355bb6 URL: https://source.winehq.org/git/wine.git/?a=commit;h=0b801a4215bb566603aa0f2ac...
Author: Jacek Caban jacek@codeweavers.com Date: Fri Jul 31 16:45:28 2020 +0200
configure: Use *-windows instead of *-windows-gnu as fallback cross compiler target.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
configure | 4 ++-- configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/configure b/configure index 443e986ed5..f2a18e7682 100755 --- a/configure +++ b/configure @@ -9885,8 +9885,8 @@ $as_echo "$wine_cv_crosscc" >&6; } if test -z "$llvm_target" then case $host_cpu in - *i[3456789]86*) llvm_target=i686-windows-gnu ;; - *) llvm_target=$host_cpu-windows-gnu ;; + *i[3456789]86*) llvm_target=i686-windows ;; + *) llvm_target=$host_cpu-windows ;; esac fi case $llvm_target in diff --git a/configure.ac b/configure.ac index dea25b0c3f..65a7c5d625 100644 --- a/configure.ac +++ b/configure.ac @@ -1060,8 +1060,8 @@ then if test -z "$llvm_target" then case $host_cpu in - *i[[3456789]]86*) llvm_target=i686-windows-gnu ;; - *) llvm_target=$host_cpu-windows-gnu ;; + *i[[3456789]]86*) llvm_target=i686-windows ;; + *) llvm_target=$host_cpu-windows ;; esac fi case $llvm_target in