mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* runruby.rb: gets extout and arch from rbconfig.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a61cd5ed39
commit
048acb6638
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Feb 8 09:41:47 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* runruby.rb: gets extout and arch from rbconfig.rb.
|
||||
|
||||
Sat Feb 7 21:26:15 2009 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* test/socket/test_addrinfo.rb (test_family_addrinfo): don't use
|
||||
|
|
|
@ -49,9 +49,10 @@ unless File.exist?(ruby)
|
|||
end
|
||||
|
||||
libs = [abs_archdir]
|
||||
extout ||= config["EXTOUT"]
|
||||
if extout
|
||||
abs_extout = File.expand_path(extout)
|
||||
libs << File.expand_path("common", abs_extout) << File.expand_path(RUBY_PLATFORM, abs_extout)
|
||||
libs << File.expand_path("common", abs_extout) << File.expand_path(config['arch'], abs_extout)
|
||||
end
|
||||
libs << File.expand_path("lib", srcdir)
|
||||
config["bindir"] = abs_archdir
|
||||
|
|
Loading…
Add table
Reference in a new issue