Merge pull request #7575 from rmNULL/master

Skip needed_libraries check when patchelf is the bottle being installed.
This commit is contained in:
Shaun Jackman 2020-05-14 17:52:21 -07:00 committed by GitHub
commit 56f0308fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,6 +132,8 @@ module ELFShim
elsif DevelopmentTools.locate "patchelf"
needed_libraries_using_patchelf path
else
return [nil, []] if path.basename.to_s == "patchelf"
raise "patchelf must be installed: brew install patchelf"
end
end