* tool/rbinstall.rb: fixed error of local installation.

[Bug #10192][ruby-core:64702]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-09-02 08:02:59 +00:00
Родитель 3e95253eb8
Коммит 4032c76ab7
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Tue Sep 2 17:02:53 2014 Vit Ondruch <v.ondruch@tiscali.cz>
* tool/rbinstall.rb: fixed error of local installation.
[Bug #10192][ruby-core:64702]
Tue Sep 2 16:58:03 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* test/runner.rb: reporting test coverage for test-all with COVERAGE env.

Просмотреть файл

@ -714,7 +714,7 @@ install?(:ext, :comm, :gem) do
directories = Gem.ensure_gem_subdirectories(gem_dir, :mode => $dir_mode)
prepare "bundle gems", gem_dir, directories
Dir.glob(srcdir+'/gems/*.gem').each do |gem|
Gem.install gem, :install_dir => with_destdir(Gem.dir)
Gem.install gem, :install_dir => with_destdir(Gem.dir), :domain => :local, :ignore_dependencies => true
gemname = Pathname(gem).basename
puts "#{" "*30}#{gemname}"
end