-
Notifications
You must be signed in to change notification settings - Fork 915
V1.1.0rc #634
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
V1.1.0rc #634
Conversation
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.
see comments.
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.
LGTM
@@ -82,10 +82,12 @@ fixup_wheel_macosx () { | |||
|
|||
# Change the name to be local | |||
install_name_tool -id "$lib" $lib | |||
if otool -L $lib | grep -q /usr/local/lib/librdkafka.1.dylib ; then | |||
# Extract existing(old) reference | |||
old=$(otool -L $lib | grep -o '.*librdkafka.1.dylib' | xargs) |
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.
nit: Nice trick, but will not handle multiple spaces in the path itself (however unlikely).
$ echo ' y/ strange path/x' | xargs
y/ strange path/x
That's ok for now though.,
No description provided.