diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-06-15 13:23:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-15 13:23:00 +0200 |
commit | 01bb8787c953aeb399bd97fa64c8b31c2e9abe43 (patch) | |
tree | 47ab48b7b1ab2af2ed154299f87b494817b351dd /platform/javascript/detect.py | |
parent | f38f5c9e16c37e799fdcd2b71bbe7f9e66705a78 (diff) | |
parent | c48ffed87a189c3543e0bb2a8056f24b5f7d19cb (diff) | |
download | redot-engine-01bb8787c953aeb399bd97fa64c8b31c2e9abe43.tar.gz |
Merge pull request #5212 from vnen/fix-emscripten-build
Fix javascript build in Windows
Diffstat (limited to 'platform/javascript/detect.py')
-rw-r--r-- | platform/javascript/detect.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/javascript/detect.py b/platform/javascript/detect.py index ae33a43f0d..d76a20bea7 100644 --- a/platform/javascript/detect.py +++ b/platform/javascript/detect.py @@ -44,6 +44,9 @@ def get_flags(): def configure(env): + env['ENV'] = os.environ; + env.use_windows_spawn_fix('javascript') + env.Append(CPPPATH=['#platform/javascript']) em_path=os.environ["EMSCRIPTEN_ROOT"] |