mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Use ENV['RUBY_EXE'] as RbConfig.ruby might be incorrect
* On a built-but-not-installed-ruby. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a184500be2
commit
a53ac0c54f
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ def compile_extension(name)
|
|||
ruby_library = "#{RbConfig::CONFIG['libdir']}/#{libruby_so}"
|
||||
unless libruby_so and File.exist?(ruby_library)
|
||||
# Statically-compiled lib in the binary
|
||||
ruby_library = RbConfig.ruby
|
||||
ruby_library = ENV['RUBY_EXE']
|
||||
end
|
||||
|
||||
return lib if File.exist?(lib) and
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue