diff options
author | Chad Austin <chad@imvu.com> | 2013-01-31 17:48:49 -0800 |
---|---|---|
committer | Chad Austin <chad@imvu.com> | 2013-03-04 19:31:47 -0800 |
commit | 730294d0d106a4cf2d40bad94bba33f53d944ebc (patch) | |
tree | a23fdcf4f1942d736fdc07e8eeffbf4bfd6150d0 /emscripten.py | |
parent | 14833940f45cfea351e571f486d68c685cb9239f (diff) |
Move TEMP_DIR into the Configuration object.
Diffstat (limited to 'emscripten.py')
-rwxr-xr-x | emscripten.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/emscripten.py b/emscripten.py index 26a018ae..1a87c788 100755 --- a/emscripten.py +++ b/emscripten.py @@ -585,10 +585,10 @@ def main(args, compiler_engine, cache, jcache, relooper): def _main(environ): parser = optparse.OptionParser( - usage='usage: %prog [-h] [-H HEADERS] [-o OUTFILE] [-c COMPILER_ENGINE] [-s FOO=BAR]* infile', - description=('You should normally never use this! Use emcc instead. ' - 'This is a wrapper around the JS compiler, converting .ll to .js.'), - epilog='') + usage='usage: %prog [-h] [-H HEADERS] [-o OUTFILE] [-c COMPILER_ENGINE] [-s FOO=BAR]* infile', + description=('You should normally never use this! Use emcc instead. ' + 'This is a wrapper around the JS compiler, converting .ll to .js.'), + epilog='') parser.add_option('-H', '--headers', default=[], action='append', |