aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xtool/rbinstall.rb4
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ac65e1cea..07dd2befc5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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]
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index b46f96ae94..df4688ead7 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -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)