mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* runruby.rb: eliminate uninitialized variable.
[ruby-core:11255] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@12392 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d0af0f2f2a
commit
1beec4c476
3 changed files with 7 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Sun May 27 05:24:56 2007 URABE Shyouhei <shyouhei@ruby-lang.org>
|
||||||
|
|
||||||
|
* runruby.rb: eliminate uninitialized variable.
|
||||||
|
[ruby-core:11255]
|
||||||
|
|
||||||
Sun May 27 05:19:03 2007 URABE Shyouhei <shyouhei@ruby-lang.org>
|
Sun May 27 05:19:03 2007 URABE Shyouhei <shyouhei@ruby-lang.org>
|
||||||
|
|
||||||
* eval.c (mnew): call of super via a method object should work again.
|
* eval.c (mnew): call of super via a method object should work again.
|
||||||
|
|
|
@ -41,11 +41,7 @@ config["bindir"] = abs_archdir
|
||||||
ENV["RUBY"] = File.expand_path(ruby)
|
ENV["RUBY"] = File.expand_path(ruby)
|
||||||
ENV["PATH"] = [abs_archdir, ENV["PATH"]].compact.join(File::PATH_SEPARATOR)
|
ENV["PATH"] = [abs_archdir, ENV["PATH"]].compact.join(File::PATH_SEPARATOR)
|
||||||
|
|
||||||
if pure
|
|
||||||
libs << File.expand_path("ext", srcdir) << "-"
|
libs << File.expand_path("ext", srcdir) << "-"
|
||||||
elsif e = ENV["RUBYLIB"]
|
|
||||||
libs |= e.split(File::PATH_SEPARATOR)
|
|
||||||
end
|
|
||||||
ENV["RUBYLIB"] = $:.replace(libs).join(File::PATH_SEPARATOR)
|
ENV["RUBYLIB"] = $:.replace(libs).join(File::PATH_SEPARATOR)
|
||||||
|
|
||||||
libruby_so = File.join(abs_archdir, config['LIBRUBY_SO'])
|
libruby_so = File.join(abs_archdir, config['LIBRUBY_SO'])
|
||||||
|
@ -59,7 +55,6 @@ if File.file?(libruby_so)
|
||||||
end
|
end
|
||||||
|
|
||||||
cmd = [ruby]
|
cmd = [ruby]
|
||||||
cmd << "-rpurelib.rb" if pure
|
cmd << "-rpurelib.rb"
|
||||||
cmd.concat(ARGV)
|
cmd.concat(ARGV)
|
||||||
cmd.unshift(*debugger) if debugger
|
|
||||||
exec(*cmd)
|
exec(*cmd)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#define RUBY_RELEASE_DATE "2007-05-23"
|
#define RUBY_RELEASE_DATE "2007-05-23"
|
||||||
#define RUBY_VERSION_CODE 186
|
#define RUBY_VERSION_CODE 186
|
||||||
#define RUBY_RELEASE_CODE 20070527
|
#define RUBY_RELEASE_CODE 20070527
|
||||||
#define RUBY_PATCHLEVEL 28
|
#define RUBY_PATCHLEVEL 29
|
||||||
|
|
||||||
#define RUBY_VERSION_MAJOR 1
|
#define RUBY_VERSION_MAJOR 1
|
||||||
#define RUBY_VERSION_MINOR 8
|
#define RUBY_VERSION_MINOR 8
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue