Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Fix osx-dynamic install names for updated dependent shared library ids #39889
Fix osx-dynamic install names for updated dependent shared library ids #39889
Changes from 1 commit
bfeaae4
5cfdd84
99ccc90
f9dfb06
95ed519
2bbba3b
2f70113
f41bc39
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check exit code? (Or COMMAND_ERROR_IS_FATAL ?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry I'm new to using
COMMAND_ERROR_IS_FATAL
- if I addCOMMAND_ERROR_IS_FATAL ANY
would that make the check forchange_id_error
potentially redundant or I should have both checks in-caseinstall_name_tool
returns a0
exit code but still prints something out tostderr
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be honest I haven't used
COMMAND_ERROR_IS_FATAL
yet either 😅. I was just looking at the docs to make sure I understood what you were doing and saw that there.I don't know what
"${install_name_tool_cmd}"
's behavior with respect tostderr
and errors is; despite the name,stderr
does not always mean 'all errors go here'. It originates from big iron in the 70s where you would have machine readable bits on and input and output tape, and anything you wanted to show to a human operator would be sent to a separate physical printer.My comment is more like 'some of these commands' exit code is being checked and some of them aren't being checked, it seems like they should all be checked unless there is a specific reason not to'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
applied
nitpicks.patch
to f41bc39 (one of the nitpicks already applied via code suggestion in another comment).