python build script: put showing environment after the GTK install so we can double check the paths

This commit is contained in:
Andrew Tonner 2017-01-22 23:01:08 -08:00
parent 2f8c7f441c
commit 2e7771a4ae
1 changed files with 7 additions and 5 deletions

View File

@ -195,11 +195,6 @@ def install(make_args, show_build_environment, use_precompiled_dyngen, build_jit
for var in ["MAKEFLAGS", "MAKELEVEL", "MFLAGS"]:
our_env.pop(var, None)
if show_build_environment:
print "ENVIRONMENT FOR BUILD"
show_env_dict(our_env)
print ""
# download & install GTK
gtk_install_filename = download(GTK_INSTALL_URL)
@ -212,6 +207,13 @@ def install(make_args, show_build_environment, use_precompiled_dyngen, build_jit
our_env["PKG_CONFIG_PATH"] = gtk_pkg_config_path
our_env["ACLOCAL_PATH"] = gtk_aclocal_path
# show build environment
if show_build_environment:
print "ENVIRONMENT FOR BUILD"
show_env_dict(our_env)
print ""
# build SDL
sdl_zip_filename = download(SDL_ZIP_URL)