diff options
author | Ehsan Akhgari <ehsan.akhgari@gmail.com> | 2012-01-28 15:29:43 -0500 |
---|---|---|
committer | Ehsan Akhgari <ehsan.akhgari@gmail.com> | 2012-01-28 15:48:55 -0500 |
commit | 35a874392b9c117cf462260aab5dee3f56100e5c (patch) | |
tree | 0542de31e714a405c92757caa11a8fbcf78cd0cf /tools/emmaken.py | |
parent | dc84a84b531b3d2b79709dbe89ee3e1d34b19d6d (diff) |
Enable the EM_CONFIG environment variable to override ~/.emscripten
This commit fixes issue #180.
Diffstat (limited to 'tools/emmaken.py')
-rwxr-xr-x | tools/emmaken.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/emmaken.py b/tools/emmaken.py index 0759c2d3..447a7d6d 100755 --- a/tools/emmaken.py +++ b/tools/emmaken.py @@ -223,6 +223,6 @@ try: os.execvp(call, [call] + newargs) except Exception, e: - print 'Error in emmaken.py. (Is the config file ~/.emscripten set up properly?) Error:', e + print 'Error in emmaken.py. (Is the config file %s set up properly?) Error:' % EM_CONFIG, e raise |