aboutsummaryrefslogtreecommitdiff
path: root/tools/emmaken.py
diff options
context:
space:
mode:
authorEhsan Akhgari <ehsan.akhgari@gmail.com>2012-01-28 15:29:43 -0500
committerEhsan Akhgari <ehsan.akhgari@gmail.com>2012-01-28 15:48:55 -0500
commit35a874392b9c117cf462260aab5dee3f56100e5c (patch)
tree0542de31e714a405c92757caa11a8fbcf78cd0cf /tools/emmaken.py
parentdc84a84b531b3d2b79709dbe89ee3e1d34b19d6d (diff)
Enable the EM_CONFIG environment variable to override ~/.emscripten
This commit fixes issue #180.
Diffstat (limited to 'tools/emmaken.py')
-rwxr-xr-xtools/emmaken.py2
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