commit | 0a0862001bb446e473324b121ae6e5a743fd96e0 | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Thu Dec 16 16:54:15 2010 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Dec 16 17:59:24 2010 +0100 |
tree | 9b36b0eae6883a5a58bb72b3b716763ded921289 | |
parent | fe031c937d711603c711e76c2bdf5c743af98d4d [diff] [blame] |
loader: Build the preloader for x86-64.
diff --git a/configure b/configure index c1256ba..18ec4a7 100755 --- a/configure +++ b/configure
@@ -12736,11 +12736,12 @@ test "x$enable_win64" != "xyes" || MAIN_BINARY="wine64" -case $host_cpu in - *i[3456789]86*) - case $host_os in - linux*) - EXTRA_BINARIES="wine-preloader" +case $host_os in + linux*) + case $host_cpu in + *i[3456789]86*) EXTRA_BINARIES="wine-preloader" + ;; + x86_64*) EXTRA_BINARIES="wine64-preloader" ;; esac ;;