Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

depfixer: fix rpath iterating on chars #13356

Closed
wants to merge 1 commit into from

Conversation

bruchar1
Copy link
Member

Fixes #13355. Regression was caused by #13012.

@bruchar1 bruchar1 requested a review from jpakkane as a code owner June 27, 2024 00:11
@bruchar1 bruchar1 added this to the 1.5.0 milestone Jun 27, 2024
@@ -406,10 +406,10 @@ def fix_darwin(fname: str, rpath_dirs_to_remove: T.Set[bytes], new_rpath: str, f
return
new_rpaths: OrderedSet[str] = OrderedSet()
if new_rpath:
new_rpaths.update(new_rpath)
new_rpaths.add(new_rpath)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suspect that this is wrong and have a different fix but have been waiting for my macOS expert to arrive.

@bruchar1 bruchar1 removed this from the 1.5.0 milestone Jun 27, 2024
@bruchar1 bruchar1 closed this Jun 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

depfixer: install_rpath gets split into multiple with each having one character(!)
2 participants