mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* runruby.rb: should load built rbconfig.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8655 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
20484c52b0
commit
fc114887e6
2 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Jun 23 23:55:59 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* runruby.rb: should load built rbconfig.rb.
|
||||||
|
|
||||||
Thu Jun 23 16:53:15 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
Thu Jun 23 16:53:15 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
|
|
||||||
* ext/tk/lib/tk/canvastag.rb: TkcGroup.new cannot include given items.
|
* ext/tk/lib/tk/canvastag.rb: TkcGroup.new cannot include given items.
|
||||||
|
@ -7,7 +11,7 @@ Thu Jun 23 16:53:15 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
* ext/tk/lib/tk/canvas.rb: TkCanvas#dtag and some subcommands of
|
* ext/tk/lib/tk/canvas.rb: TkCanvas#dtag and some subcommands of
|
||||||
TkCanvas#addtag fail to treat a TkcTag argument.
|
TkCanvas#addtag fail to treat a TkcTag argument.
|
||||||
|
|
||||||
* ext/tk/lib/tk/event.rb: add TkEvent::Event#generate to help to send
|
* ext/tk/lib/tk/event.rb: add TkEvent::Event#generate to help to send
|
||||||
current event to other widgets.
|
current event to other widgets.
|
||||||
|
|
||||||
Mon Jun 20 18:44:04 2005 Tanaka Akira <akr@m17n.org>
|
Mon Jun 20 18:44:04 2005 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
10
runruby.rb
10
runruby.rb
|
@ -18,18 +18,20 @@ while arg = ARGV[0]
|
||||||
ARGV.shift
|
ARGV.shift
|
||||||
end
|
end
|
||||||
|
|
||||||
require 'rbconfig'
|
|
||||||
config = Config::CONFIG
|
|
||||||
|
|
||||||
srcdir ||= File.dirname(__FILE__)
|
srcdir ||= File.dirname(__FILE__)
|
||||||
archdir ||= '.'
|
archdir ||= '.'
|
||||||
|
|
||||||
|
abs_archdir = File.expand_path(archdir)
|
||||||
|
$:.unshift(abs_archdir)
|
||||||
|
|
||||||
|
require 'rbconfig'
|
||||||
|
config = Config::CONFIG
|
||||||
|
|
||||||
ruby = File.join(archdir, config["RUBY_INSTALL_NAME"]+config['EXEEXT'])
|
ruby = File.join(archdir, config["RUBY_INSTALL_NAME"]+config['EXEEXT'])
|
||||||
unless File.exist?(ruby)
|
unless File.exist?(ruby)
|
||||||
abort "#{ruby} is not found.\nTry `make' first, then `make test', please.\n"
|
abort "#{ruby} is not found.\nTry `make' first, then `make test', please.\n"
|
||||||
end
|
end
|
||||||
|
|
||||||
abs_archdir = File.expand_path(archdir)
|
|
||||||
libs = [abs_archdir, File.expand_path("lib", srcdir)]
|
libs = [abs_archdir, File.expand_path("lib", srcdir)]
|
||||||
if extout
|
if extout
|
||||||
abs_extout = File.expand_path(extout)
|
abs_extout = File.expand_path(extout)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue