diff options
author | muraken <muraken@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-12 04:56:34 +0000 |
---|---|---|
committer | muraken <muraken@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-12 04:56:34 +0000 |
commit | da72b1bb6e323dcc288541af1a9516027d40c905 (patch) | |
tree | 4d93e6b11b2f4f301bd1380e8b1a620196178d86 | |
parent | 27f953bfad3b604ae9023a0b9996948c2b3b2982 (diff) |
* tool/compile_prelude.rb: TMP_RUBY_PREFIX should replace rubylibprefix but not prefix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26885 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | tool/compile_prelude.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Mar 12 13:52:00 2010 Kenta Murata <[email protected]> + + * tool/compile_prelude.rb: TMP_RUBY_PREFIX should replace + rubylibprefix but not prefix. + Fri Mar 12 09:43:11 2010 NARUSE, Yui <[email protected]> * complex.c (f_signbit): remove condition for signbit because diff --git a/tool/compile_prelude.rb b/tool/compile_prelude.rb index 93a6dd9cf0..d13670d955 100755 --- a/tool/compile_prelude.rb +++ b/tool/compile_prelude.rb @@ -48,7 +48,7 @@ class Prelude key = $1 unless @mkconf require './rbconfig' - @mkconf = RbConfig::MAKEFILE_CONFIG.merge('prefix'=>'#{TMP_RUBY_PREFIX}') + @mkconf = RbConfig::MAKEFILE_CONFIG.merge('rubylibprefix'=>'#{TMP_RUBY_PREFIX}') end if RbConfig::MAKEFILE_CONFIG.has_key? key val = RbConfig.expand("$(#{key})", @mkconf) |