diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-18 09:21:57 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-18 09:21:57 -0800 |
commit | a734d2ab175985e5e0ffdf940a85a29dab7ea842 (patch) | |
tree | a0534de702ec645bc39eb6747e49725b75f669d6 | |
parent | 56b65a54cb92d2d4a34535f71dbae08d758d3fc3 (diff) |
deprecate emmaken.py and emconfiguren.py
-rwxr-xr-x | tools/emconfiguren.py | 3 | ||||
-rwxr-xr-x | tools/emmaken.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/emconfiguren.py b/tools/emconfiguren.py index 4987fbbd..2ea5669f 100755 --- a/tools/emconfiguren.py +++ b/tools/emconfiguren.py @@ -1,6 +1,7 @@ #!/usr/bin/env python -raise Exception('emconfiguren is deprecated! use "emconfigure" (no "n")') +import sys +print >> sys.stderr, '\n\nemconfiguren.py is deprecated! use "emconfigure"\n\n' ''' This is a helper script for emmaken.py. See docs in that file for more info. diff --git a/tools/emmaken.py b/tools/emmaken.py index a3a9a721..0759c2d3 100755 --- a/tools/emmaken.py +++ b/tools/emmaken.py @@ -1,6 +1,7 @@ #!/usr/bin/env python -raise Exception('emmaken is deprecated! use "emcc"') +import sys +print >> sys.stderr, '\n\nemmaken.py is deprecated! use "emcc"\n\n' ''' emmaken - the emscripten make proxy tool |