blob: c88799f0495f392a43cff65f13f60d1dac2d9a2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
$NetBSD: patch-lib_rubygems_platform.rb,v 1.1 2015/03/08 16:24:55 taca Exp $
* Don't replace "i486" to "x86".
* Allow simple "netbsd" as Gem::Platform.
--- lib/rubygems/platform.rb.orig 2014-09-14 03:30:02.000000000 +0000
+++ lib/rubygems/platform.rb
@@ -62,10 +62,7 @@ class Gem::Platform
cpu = arch.shift
- @cpu = case cpu
- when /i\d86/ then 'x86'
- else cpu
- end
+ @cpu = cpu
if arch.length == 2 and arch.last =~ /^\d+(\.\d+)?$/ then # for command-line
@os, @version = arch
@@ -93,7 +90,7 @@ class Gem::Platform
os, version = $1, $3
@cpu = 'x86' if @cpu.nil? and os =~ /32$/
[os, version]
- when /netbsdelf/ then [ 'netbsdelf', nil ]
+ when /netbsd/ then [ 'netbsd', nil ]
when /openbsd(\d+\.\d+)?/ then [ 'openbsd', $1 ]
when /solaris(\d+\.\d+)?/ then [ 'solaris', $1 ]
# test
|