mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-26 10:49:21 +00:00
python build script: put showing environment after the GTK install so we can double check the paths
This commit is contained in:
parent
2f8c7f441c
commit
2e7771a4ae
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user