diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-12-31 06:44:58 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-12-31 06:44:58 +0000 |
commit | 2bca263569cba745ffee0856487f993a8a5b5624 (patch) | |
tree | 26770c319740ec170298aad69260d8118fe3d720 /lib | |
parent | f0c310c6091bb84606f43df5ac301d2da1083e31 (diff) | |
download | ruby-2bca263569cba745ffee0856487f993a8a5b5624.tar.gz |
mkmf.rb: expand RUBY_SO_NAME
* lib/mkmf.rb (RbConfig): expand RUBY_SO_NAME for extensions
backward compatibility. [ruby-core:59426] [Bug #9329]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44469 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mkmf.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 27345275a3..0c3b2cb513 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -2509,6 +2509,8 @@ MESSAGE $configure_args["--topdir"] ||= $curdir $ruby = arg_config("--ruby", File.join(RbConfig::CONFIG["bindir"], CONFIG["ruby_install_name"])) + RbConfig.expand(CONFIG["RUBY_SO_NAME"]) + # :startdoc: split = Shellwords.method(:shellwords).to_proc |