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 3c2f1e4 commit a7f4534Copy full SHA for a7f4534
utils/swift-rpathize.py
@@ -60,7 +60,7 @@ def rpathize(filename):
60
# The output from dyldinfo -dylibs is a line of header followed by one
61
# install name per line, indented with spaces.
62
dylib_regex = re.compile(
63
- r"^\s*(?P<path>/usr/lib/swift/(?P<filename>.*\.dylib))\s*$")
+ r"(^|.*\s)(?P<path>/usr/lib/swift/(?P<filename>.*\.dylib))\s*$")
64
65
# Build a command to invoke install_name_tool.
66
command = ['install_name_tool']
0 commit comments