summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-03 03:05:39 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-03 03:05:39 +0000
commit46a93a65df6e51c8317cd958d44f21313b5a28ee (patch)
tree196fd95ede45e1d40e6e9673cc842bf98384be0f /tool
parent45992b4b252b015702581589c584a61831346416 (diff)
* tool/runruby.rb: no purelib.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28841 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-xtool/runruby.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/tool/runruby.rb b/tool/runruby.rb
index d24b748c96..76478c66f1 100755
--- a/tool/runruby.rb
+++ b/tool/runruby.rb
@@ -1,6 +1,5 @@
#!./miniruby
-pure = true
show = false
precommand = []
while arg = ARGV[0]
@@ -18,7 +17,7 @@ while arg = ARGV[0]
when re =~ "extout"
extout = value
when re =~ "pure"
- pure = (value != "no")
+ # obsolete switch do nothing
when re =~ "debugger"
require 'shellwords'
precommand.concat(value ? (Shellwords.shellwords(value) unless value == "no") : %w"gdb --args")
@@ -62,9 +61,7 @@ env = {}
env["RUBY"] = File.expand_path(ruby)
env["PATH"] = [abs_archdir, ENV["PATH"]].compact.join(File::PATH_SEPARATOR)
-if pure
- libs << File.expand_path("ext", srcdir) << "-"
-elsif e = ENV["RUBYLIB"]
+if e = ENV["RUBYLIB"]
libs |= e.split(File::PATH_SEPARATOR)
end
env["RUBYLIB"] = $:.replace(libs).join(File::PATH_SEPARATOR)
@@ -82,7 +79,6 @@ end
ENV.update env
cmd = [ruby]
-cmd << "-rpurelib.rb" if pure
cmd.concat(ARGV)
cmd.unshift(*precommand) unless precommand.empty?