ruby-changes:38084
From: hsbt <ko1@a...>
Date: Sun, 5 Apr 2015 08:47:11 +0900 (JST)
Subject: [ruby-changes:38084] hsbt:r50165 (trunk): * tool/rbinstall.rb: support --program-suffix option.
hsbt 2015-04-05 08:46:45 +0900 (Sun, 05 Apr 2015) New Revision: 50165 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=50165 Log: * tool/rbinstall.rb: support --program-suffix option. Modified files: trunk/ChangeLog trunk/tool/rbinstall.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 50164) +++ ChangeLog (revision 50165) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Apr 5 08:46:08 2015 SHIBATA Hiroshi <shibata.hiroshi@g...> + + * tool/rbinstall.rb: support --program-suffix option. + Sat Apr 4 21:31:18 2015 SHIBATA Hiroshi <shibata.hiroshi@g...> * lib/rake/*: Gemify rake [fix GH-862][Feature #11025] Index: tool/rbinstall.rb =================================================================== --- tool/rbinstall.rb (revision 50164) +++ tool/rbinstall.rb (revision 50165) @@ -741,7 +741,8 @@ install?(:ext, :comm, :gem) do https://github.com/ruby/ruby/blob/trunk/tool/rbinstall.rb#L741 :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 https://github.com/ruby/ruby/blob/trunk/tool/rbinstall.rb#L762 :data_mode => $data_mode, :prog_mode => $prog_mode, :wrappers => true, + :format_executable => true, } gems.each do |gem| Gem.install(gem, Gem::Requirement.default, options) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/