From d2a426a6ab695c9a209a3abd9a8d2d4221960111 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 11 Dec 2008 20:39:05 +0100 Subject: [PATCH] libwine: Don't try to use the preloader on non-i386. --- libs/wine/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/wine/config.c b/libs/wine/config.c index ba898114ad2..280241c8074 100644 --- a/libs/wine/config.c +++ b/libs/wine/config.c @@ -421,7 +421,7 @@ const char *wine_get_build_id(void) /* exec a binary using the preloader if requested; helper for wine_exec_wine_binary */ static void preloader_exec( char **argv, int use_preloader ) { -#ifdef linux +#if defined(linux) && defined(__i386__) if (use_preloader) { static const char preloader[] = "wine-preloader";