Fix build script for ttk-core

This commit is contained in:
Kevin Lange 2013-04-12 22:00:31 -07:00
parent 0a140ce941
commit d169157a6c

View File

@ -62,7 +62,7 @@ class CCompiler(object):
self.arguments.extend(self.libs)
def dependencies(self):
return [os.path.abspath(x) for x in self.libs if x.startswith('lib/')]
return [os.path.abspath(x) for x in self.libs if 'lib/' in x and x.endswith('.o')]
def output_file(self):
if '/lib/' in self.filename: