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
This commit is contained in:
Maarten ter Huurne 2008-09-23 00:07:51 +00:00
parent 29664c880a
commit 866d15d3d8

View File

@ -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)