LLVMBuild: Remove trailing newline, which irked me.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146409 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar
2011-12-12 19:48:00 +00:00
parent 59a1c93e95
commit 4ab406d7fc
111 changed files with 2 additions and 111 deletions

View File

@ -262,7 +262,8 @@ class LLVMProjectInfo(object):
for i,fragment in enumerate(fragments):
print >>f, '[component_%d]' % i
f.write(fragment)
print >>f
if fragment is not fragments[-1]:
print >>f
f.close()
def write_library_table(self, output_path):