* tool/compile_prelude.rb: fix TMP_RUBY_PREFIX for relative load path

environment.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-11-15 09:07:45 +00:00
parent 790f631301
commit 7d6eb8e68b
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Thu Nov 15 18:04:06 2007 Tanaka Akira <akr@fsij.org>
* tool/compile_prelude.rb: fix TMP_RUBY_PREFIX for relative load path
environment.
Thu Nov 15 17:28:21 2007 Tanaka Akira <akr@fsij.org>
* tool/compile_prelude.rb: absolute path may not start with a slash.

View File

@ -33,8 +33,7 @@ lines_list = preludes.map {|filename|
unless mkconf
require 'rbconfig'
mkconf = RbConfig::MAKEFILE_CONFIG.merge('prefix'=>'#{TMP_RUBY_PREFIX}')
exlen = $:.reverse.find{|e|e!="."}.length - RbConfig::CONFIG["prefix"].length
setup_ruby_prefix = "TMP_RUBY_PREFIX = $:.reverse.find{|e|e!=\".\"}[0..#{-exlen-1}]\n"
setup_ruby_prefix = "TMP_RUBY_PREFIX = $:.reverse.find{|e|e!=\".\"}.sub(%r{(.*)/lib/.*}m, \"\\\\1\")\n"
teardown_ruby_prefix = 'Object.class_eval { remove_const "TMP_RUBY_PREFIX" }'
end
if RbConfig::MAKEFILE_CONFIG.has_key? key