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.
l
1 parent be4e2a0 commit a0d1e4eCopy full SHA for a0d1e4e
utils/swift-rpathize.py
@@ -64,9 +64,9 @@ def rpathize(filename):
64
65
# Build a command to invoke install_name_tool.
66
command = ['install_name_tool']
67
- for line in dylibsOutput.splitlines():
68
- l = line.decode("utf-8", "strict")
69
- match = dylib_regex.match(l)
+ for binaryline in dylibsOutput.splitlines():
+ line = binaryline.decode("utf-8", "strict")
+ match = dylib_regex.match(line)
70
if match:
71
command.append('-change')
72
command.append(match.group('path'))
0 commit comments