diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-14 10:30:58 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-14 10:30:58 -0700 |
commit | e77dae25c0bd7208aeaf0e9071f64a2e0dc981ec (patch) | |
tree | 6542ff0d5c11e582aa127f593453cd70dfe1e419 /tools | |
parent | 877c359b56f78caf3e1db5f3baff35520c57af9d (diff) |
clean up spidermonkey entry in settings template
Diffstat (limited to 'tools')
-rw-r--r-- | tools/settings_template_readonly.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/settings_template_readonly.py b/tools/settings_template_readonly.py index f689e205..7ab89b48 100644 --- a/tools/settings_template_readonly.py +++ b/tools/settings_template_readonly.py @@ -11,8 +11,7 @@ PYTHON = os.path.expanduser(os.getenv('PYTHON') or '{{{ PYTHON }}}') # executabl # See below for notes on which JS engine(s) you need NODE_JS = os.path.expanduser(os.getenv('NODE') or '{{{ NODE }}}') # executable -SPIDERMONKEY_ENGINE = [ - os.path.expanduser(os.getenv('SPIDERMONKEY') or 'js'), '-m', '-n'] # executable +SPIDERMONKEY_ENGINE = [os.path.expanduser(os.getenv('SPIDERMONKEY') or 'js')] # executable V8_ENGINE = os.path.expanduser(os.getenv('V8') or 'd8') # executable JAVA = 'java' # executable |