Revision 1db37d7bc9a3e57f531352e78e80eda224b941d8 authored by Alon Zakai on 29 July 2014, 20:39:02 UTC, committed by Alon Zakai on 29 July 2014, 20:39:02 UTC
1 parent 19ec188
Raw File
emcmake
#!/usr/bin/env python2

import os, subprocess, sys
from tools import shared

configure_path = shared.path_from_root('emconfigure')
exit(subprocess.call([shared.PYTHON, configure_path] + sys.argv[1:]))

back to top