diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-12-12 19:48:00 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-12-12 19:48:00 +0000 |
commit | 4ab406d7fc06b1272d02cd8be46f0c5ebe51a3da (patch) | |
tree | 696d56afdc61f5c465951166505149eb2295adc1 /utils/llvm-build/llvmbuild/main.py | |
parent | 59a1c93e955c366084742ceca65e7b1afd8772ac (diff) |
LLVMBuild: Remove trailing newline, which irked me.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146409 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/llvm-build/llvmbuild/main.py')
-rw-r--r-- | utils/llvm-build/llvmbuild/main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/llvm-build/llvmbuild/main.py b/utils/llvm-build/llvmbuild/main.py index 9c3126c480..4c14f46c80 100644 --- a/utils/llvm-build/llvmbuild/main.py +++ b/utils/llvm-build/llvmbuild/main.py @@ -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): |