20 строки
468 B
Python
Executable File
20 строки
468 B
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
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.
|
|
'''
|
|
|
|
import os, sys
|
|
|
|
__rootpath__ = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
def path_from_root(*pathelems):
|
|
return os.path.join(__rootpath__, *pathelems)
|
|
sys.path += [path_from_root('')]
|
|
from tools.shared import *
|
|
|
|
Building.configure(sys.argv[1:])
|
|
|