blob: 28cb6366c7ba5e27a213da64f066faa25510af19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env python
#raise Exception('emconfiguren is deprecated!')
'''
This is a helper script for emmaken.py. See docs in that file for more info.
'''
import os, sys
__rootpath__ = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
def path_from_root(*pathelems):
return os.path.join(__rootpath__, *pathelems)
exec(open(path_from_root('tools', 'shared.py'), 'r').read())
Building.configure(sys.argv[1:])
|