aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-11 14:26:44 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-11 14:26:44 +0000
commitd266473283e5275497ede28d3bc6b238010f37ec (patch)
treec469c90897154a9f27573755c6980da85620e782
parent42e149c9ad5297b2cb507bfe56318fcae432cf55 (diff)
downloadruby-d266473283e5275497ede28d3bc6b238010f37ec.tar.gz
* tool/rbinstall.rb: support destdir for native extention gem.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50234 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rwxr-xr-xtool/rbinstall.rb1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c9cf189027..ff69875ccb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Apr 11 23:26:05 2015 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
+
+ * tool/rbinstall.rb: support destdir for native extention gem.
+
Sat Apr 11 21:02:06 2015 NAKAMURA Usaku <usa@ruby-lang.org>
* test/ruby/test_file_exhaustive.rb
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index cec3b57f5c..1ce2983493 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -775,6 +775,7 @@ install?(:ext, :comm, :gem) do
end
next if gems.empty?
if defined?(Zlib)
+ ENV['DESTDIR'] = $destdir if $destdir
gems.each do |gem|
Gem.install(gem, Gem::Requirement.default, options)
gemname = File.basename(gem)