Fix newline character in GCC package (#4181)
* Fix newline character in GCC package * Remove the newline completely
This commit is contained in:
parent
64fb2f22b4
commit
36db5ba9d8
1 changed files with 1 additions and 1 deletions
|
@ -250,6 +250,6 @@ def write_rpath_specs(self):
|
|||
for line in lines:
|
||||
out.write(line + '\n')
|
||||
if line.startswith('*link:'):
|
||||
out.write(r'-rpath {0}:{1} \n'.format(
|
||||
out.write('-rpath {0}:{1} '.format(
|
||||
self.prefix.lib, self.prefix.lib64))
|
||||
set_install_permissions(specs_file)
|
||||
|
|
Loading…
Reference in a new issue