Back out Bug 462463 for massively regressing pymake depend build speed. CLOSED TREE

This commit is contained in:
Kyle Huey
2013-03-18 12:57:35 -07:00
parent 7f8d5b3986
commit 0f5fea3dc9
15 changed files with 161 additions and 104 deletions

View File

@@ -329,9 +329,6 @@ def main():
with open(options.depend, 'w') as depfile:
depfile.write("%s : %s\n" % (options.target, ' '.join(dep for dep in deps if os.path.isfile(dep) and dep != options.target)))
for dep in deps:
if os.path.isfile(dep) and dep != options.target:
depfile.write("%s :\n" % dep)
if __name__ == '__main__':
main()