aboutsummaryrefslogtreecommitdiffstats
path: root/ext/extmk.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-18 04:50:09 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-18 04:50:09 +0000
commit291f3a10f2979d17952e9af7ef103c3ccdfea697 (patch)
tree0ac61db0319921138656577a7d05262da0382182 /ext/extmk.rb
parent8f231e1eeff8afc71193a5dccdb2916cbc9eab2f (diff)
downloadruby-291f3a10f2979d17952e9af7ef103c3ccdfea697.tar.gz
* 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
Diffstat (limited to 'ext/extmk.rb')
-rwxr-xr-xext/extmk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb
index bc00b853e3..e7593ac9f6 100755
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -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