ruby-changes:27079
From: nobu <ko1@a...>
Date: Thu, 7 Feb 2013 17:02:39 +0900 (JST)
Subject: [ruby-changes:27079] nobu:r39131 (trunk): rbinstall.rb: CONFIG['arch'] not $arch
nobu 2013-02-07 17:02:31 +0900 (Thu, 07 Feb 2013) New Revision: 39131 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39131 Log: rbinstall.rb: CONFIG['arch'] not $arch * tool/rbinstall.rb: use CONFIG['arch'] instead of $arch which was not added finally. fix r39108. Modified files: trunk/tool/rbinstall.rb Index: tool/rbinstall.rb =================================================================== --- tool/rbinstall.rb (revision 39130) +++ tool/rbinstall.rb (revision 39131) @@ -306,7 +306,7 @@ goruby_install_name = "go" + ruby_instal https://github.com/ruby/ruby/blob/trunk/tool/rbinstall.rb#L306 bindir = CONFIG["bindir", true] libdir = CONFIG["libdir", true] rubyhdrdir = CONFIG["rubyhdrdir", true] -archhdrdir = CONFIG["rubyarchhdrdir"] || (rubyhdrdir + "/" + $arch) +archhdrdir = CONFIG["rubyarchhdrdir"] || (rubyhdrdir + "/" + CONFIG['arch']) rubylibdir = CONFIG["rubylibdir", true] archlibdir = CONFIG["rubyarchdir", true] sitelibdir = CONFIG["sitelibdir"] -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/