Skip to content

Commit

Permalink
Support non gnu libc arm-linux-eabi platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
ntkme committed Aug 31, 2022
1 parent 394d7a6 commit fcf6279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundler/lib/bundler/rubygems_ext.rb
Expand Up @@ -259,7 +259,7 @@ def ===(other)
# version
(
(@os != "linux" && (@version.nil? || other.version.nil?)) ||
(@os == "linux" && ((@version.nil? && ["gnu", "musl"].include?(other.version)) || (@version == "gnu" && other.version.nil?))) ||
(@os == "linux" && (other.version == "gnu#{@version}" || other.version == "musl#{@version}" || @version == "gnu#{other.version}")) ||
@version == other.version
)
end
Expand Down

0 comments on commit fcf6279

Please sign in to comment.