tools: Disable automatic DC file detection until they can be ordered deterministically.

This commit is contained in:
Sam Edwards 2013-10-22 17:18:26 -06:00
parent e1b60edc3d
commit 606690882b

View file

@ -30,7 +30,8 @@ class ClientBuilder(object):
def __init__(self, directory):
self.directory = directory
self.dcfiles = []
self.dcfiles = [os.path.join(directory, 'config/otp.dc'),
os.path.join(directory, 'config/toon.dc')]
self.modules = {}
self.mf = ModuleFinder(sys.path+[self.directory])
@ -123,7 +124,7 @@ class ClientBuilder(object):
self.modules[modname] = (is_package, code)
def load_modules(self):
self.find_dcfiles()
#self.find_dcfiles()
self.find_excludes()
for dc in self.dcfiles: