diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2013-09-01 16:23:43 +0300 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-09-01 16:23:43 +0300 |
commit | 2304a518bfa7cbf7c6aeacfcaf01e4e6e812fe30 (patch) | |
tree | b672cae85c4d1ba0e60c051d51762d3e5cd82e7b /tools/shared.py | |
parent | 72ace7c3972dac3ba6ee71a17fc82aa7cf5f0326 (diff) |
Use EM_BUILD_VERBOSE instead of EMSCRIPTEN_VERBOSE as the name of the env. variable that controls whether external configure/build libraries are invoked with logging output to console.
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 71ef3786..09526490 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -894,7 +894,7 @@ set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)''' % { 'winfix': '' if not WINDOWS e # except: # pass env = Building.get_building_env(native) - log_to_file = os.getenv('EMSCRIPTEN_VERBOSE') == None or int(os.getenv('EMSCRIPTEN_VERBOSE')) == 0 + log_to_file = os.getenv('EM_BUILD_VERBOSE') == None or int(os.getenv('EM_BUILD_VERBOSE')) == 0 for k, v in env_init.iteritems(): env[k] = v if configure: # Useful in debugging sometimes to comment this out (and the lines below up to and including the |link| call) |