* ext/extmk.rb (extmake): remove particular platform specific condition.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-05-18 04:50:09 +00:00
Родитель 8f231e1eef
Коммит 291f3a10f2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -224,7 +224,7 @@ def extmake(target)
unless $destdir.to_s.empty? or $mflags.defined?("DESTDIR")
args += [sysquote("DESTDIR=" + relative_from($destdir, "../"+prefix))]
end
if $static and %r(\A-test-) !~ target and target != 'json' and ok
if $static and %r(\A-test-) !~ target and ok
args += ["static"] unless $clean
$extlist.push [$static, target, $target, $preload]
end