mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* tool/rbinstall.rb: support --program-suffix option.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50165 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0dd9774009
commit
75f9f244d6
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Apr 5 08:46:08 2015 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* tool/rbinstall.rb: support --program-suffix option.
|
||||
|
||||
Sat Apr 4 21:31:18 2015 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* lib/rake/*: Gemify rake [fix GH-862][Feature #11025]
|
||||
|
|
|
@ -741,7 +741,8 @@ install?(:ext, :comm, :gem) do
|
|||
:install_dir => install_dir,
|
||||
:bin_dir => with_destdir(bindir),
|
||||
:wrappers => true,
|
||||
:ignore_dependencies => true)
|
||||
:ignore_dependencies => true,
|
||||
:format_executable => true)
|
||||
puts "#{" "*30}#{spec.name} #{spec.version}"
|
||||
ins.install
|
||||
installed_gems[spec.full_name] = true
|
||||
|
@ -761,6 +762,7 @@ install?(:ext, :comm, :gem) do
|
|||
:data_mode => $data_mode,
|
||||
:prog_mode => $prog_mode,
|
||||
:wrappers => true,
|
||||
:format_executable => true,
|
||||
}
|
||||
gems.each do |gem|
|
||||
Gem.install(gem, Gem::Requirement.default, options)
|
||||
|
|
Loading…
Add table
Reference in a new issue