From 6613dc369978b9f426f635e66cc451a6f8385347 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Mon, 28 Jan 2013 21:15:56 +0000 Subject: [PATCH] build: disable SDL output redirection and try to disable winedbg.exe. --- build/lol-build | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build/lol-build b/build/lol-build index 771e772a..8beb6089 100755 --- a/build/lol-build +++ b/build/lol-build @@ -86,12 +86,12 @@ __init__() esac # Ensure we don’t launch weird Windows binaries when cross-compiling - case "${platform}" in - win*) - WINEDLLOVERRIDES="winemenubuilder.exe=d;wineboot.exe=d" - export WINEDLLOVERRIDES - ;; - esac + WINEDLLOVERRIDES="winemenubuilder.exe,wineboot.exe,explorer.exe,winedbg.exe=d" + export WINEDLLOVERRIDES + + # Ensure SDL does not redirect stdout/stderr to local files + SDL_STDIO_REDIRECT=0 + export SDL_STDIO_REDIRECT } bootstrap()