Skip to content

Commit fcf6279

Browse files
committed
Support non gnu libc arm-linux-eabi platforms
1 parent 394d7a6 commit fcf6279

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundler/lib/bundler/rubygems_ext.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def ===(other)
259259
# version
260260
(
261261
(@os != "linux" && (@version.nil? || other.version.nil?)) ||
262-
(@os == "linux" && ((@version.nil? && ["gnu", "musl"].include?(other.version)) || (@version == "gnu" && other.version.nil?))) ||
262+
(@os == "linux" && (other.version == "gnu#{@version}" || other.version == "musl#{@version}" || @version == "gnu#{other.version}")) ||
263263
@version == other.version
264264
)
265265
end

0 commit comments

Comments
 (0)