| commit | 4bf9d98c680d55d470ad4d0c4ed940a3c77d6918 | [log] [tgz] |
|---|---|---|
| author | Vincent Béron <vberon@mecano.gme.usherb.ca> | Thu Oct 14 00:30:59 2004 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Thu Oct 14 00:30:59 2004 +0000 |
| tree | 70652c215625f2b7702e60c9fb9e64582c453490 | |
| parent | 804277371a63c2575c68eb65af0e4a0679bd99d5 [diff] [blame] |
Don't build wine-preloader for other cpus than x86.
diff --git a/configure b/configure index b9ef8db..0cb457e 100755 --- a/configure +++ b/configure
@@ -14258,8 +14258,12 @@ case $host_os in 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" ;;