From 866d15d3d86d7b9e93a776beb5533ad23de346d7 Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Tue, 23 Sep 2008 00:07:51 +0000 Subject: [PATCH] Moved closing of the Configure environment before the env.ParseConfig() calls, since those use the normal environment (env), not the Configure environment (conf). git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@625 8ced0084-cf51-0410-be5f-012b33b47a6e --- SConstruct | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SConstruct b/SConstruct index 673bc5ac32..157a73b28a 100644 --- a/SConstruct +++ b/SConstruct @@ -172,15 +172,15 @@ if not env['nowx']: wxconfig.ParseWXConfig(env) +# After all configuration tests are done +env = conf.Finish() + #get sdl stuff env.ParseConfig("sdl-config --cflags --libs") # lib ao (needed for sound plugins) env.ParseConfig("pkg-config --cflags --libs ao") -# After all configuration tests are done -env = conf.Finish() - # add methods from utils to env env.AddMethod(utils.filterWarnings)