[前][次][番号順一覧][スレッド一覧]

ruby-changes:35267

From: hsbt <ko1@a...>
Date: Tue, 2 Sep 2014 17:03:04 +0900 (JST)
Subject: [ruby-changes:35267] hsbt:r47349 (trunk): * tool/rbinstall.rb: fixed error of local installation.

hsbt	2014-09-02 17:02:59 +0900 (Tue, 02 Sep 2014)

  New Revision: 47349

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47349

  Log:
    * tool/rbinstall.rb: fixed error of local installation.
      [Bug #10192][ruby-core:64702]

  Modified files:
    trunk/ChangeLog
    trunk/tool/rbinstall.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 47348)
+++ ChangeLog	(revision 47349)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Tue Sep  2 17:02:53 2014  Vit Ondruch  <v.ondruch@t...>
+
+	* tool/rbinstall.rb: fixed error of local installation.
+	  [Bug #10192][ruby-core:64702]
+
 Tue Sep  2 16:58:03 2014  SHIBATA Hiroshi  <shibata.hiroshi@g...>
 
 	* test/runner.rb: reporting test coverage for test-all with COVERAGE env.
Index: tool/rbinstall.rb
===================================================================
--- tool/rbinstall.rb	(revision 47348)
+++ tool/rbinstall.rb	(revision 47349)
@@ -714,7 +714,7 @@ install?(:ext, :comm, :gem) do https://github.com/ruby/ruby/blob/trunk/tool/rbinstall.rb#L714
   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

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]