From 4032c76ab7d101a774bd38221c7a9fd777c8669f Mon Sep 17 00:00:00 2001 From: hsbt Date: Tue, 2 Sep 2014 08:02:59 +0000 Subject: [PATCH] * 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 --- ChangeLog | 5 +++++ tool/rbinstall.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0d163b8abe..2da0e34e88 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Sep 2 17:02:53 2014 Vit Ondruch + + * tool/rbinstall.rb: fixed error of local installation. + [Bug #10192][ruby-core:64702] + Tue Sep 2 16:58:03 2014 SHIBATA Hiroshi * test/runner.rb: reporting test coverage for test-all with COVERAGE env. diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb index a77f14a5b3..08a577ebaa 100755 --- a/tool/rbinstall.rb +++ b/tool/rbinstall.rb @@ -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