We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38c8bbd commit be4e2a0Copy full SHA for be4e2a0
utils/swift-rpathize.py
@@ -65,7 +65,8 @@ def rpathize(filename):
65
# Build a command to invoke install_name_tool.
66
command = ['install_name_tool']
67
for line in dylibsOutput.splitlines():
68
- match = dylib_regex.match(line)
+ l = line.decode("utf-8", "strict")
69
+ match = dylib_regex.match(l)
70
if match:
71
command.append('-change')
72
command.append(match.group('path'))
0 commit comments