libwine: Don't try to use the preloader on non-i386.
This commit is contained in:
parent
324a803532
commit
d2a426a6ab
|
@ -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 */
|
/* exec a binary using the preloader if requested; helper for wine_exec_wine_binary */
|
||||||
static void preloader_exec( char **argv, int use_preloader )
|
static void preloader_exec( char **argv, int use_preloader )
|
||||||
{
|
{
|
||||||
#ifdef linux
|
#if defined(linux) && defined(__i386__)
|
||||||
if (use_preloader)
|
if (use_preloader)
|
||||||
{
|
{
|
||||||
static const char preloader[] = "wine-preloader";
|
static const char preloader[] = "wine-preloader";
|
||||||
|
|
Loading…
Reference in New Issue