Commit 4bf9d98c authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

Don't build wine-preloader for other cpus than x86.

parent 80427737
...@@ -14258,8 +14258,12 @@ esac ...@@ -14258,8 +14258,12 @@ esac
case $host_os in case $host_os in
linux*) linux*)
WINE_BINARIES="wine-glibc wine-kthread wine-pthread wine-preloader" case $host_cpu in
*i[3456789]86*) WINE_BINARIES="wine-glibc wine-kthread wine-pthread wine-preloader"
;;
*) WINE_BINARIES="wine-glibc wine-kthread wine-pthread"
;;
esac
MAIN_BINARY="wine-glibc" MAIN_BINARY="wine-glibc"
;; ;;
......
...@@ -1015,7 +1015,10 @@ esac ...@@ -1015,7 +1015,10 @@ esac
case $host_os in case $host_os in
linux*) linux*)
AC_SUBST(WINE_BINARIES,"wine-glibc wine-kthread wine-pthread wine-preloader") case $host_cpu in
*i[[3456789]]86*) AC_SUBST(WINE_BINARIES,"wine-glibc wine-kthread wine-pthread wine-preloader") ;;
*) AC_SUBST(WINE_BINARIES,"wine-glibc wine-kthread wine-pthread") ;;
esac
AC_SUBST(MAIN_BINARY,"wine-glibc") AC_SUBST(MAIN_BINARY,"wine-glibc")
;; ;;
darwin*) darwin*)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment