Fix newline character in GCC package (#4181)

* Fix newline character in GCC package

* Remove the newline completely
This commit is contained in:
Adam J. Stewart 2017-05-09 18:51:40 -05:00 committed by GitHub
parent 64fb2f22b4
commit 36db5ba9d8

View file

@ -250,6 +250,6 @@ def write_rpath_specs(self):
for line in lines: for line in lines:
out.write(line + '\n') out.write(line + '\n')
if line.startswith('*link:'): if line.startswith('*link:'):
out.write(r'-rpath {0}:{1} \n'.format( out.write('-rpath {0}:{1} '.format(
self.prefix.lib, self.prefix.lib64)) self.prefix.lib, self.prefix.lib64))
set_install_permissions(specs_file) set_install_permissions(specs_file)