aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-08 05:18:18 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-08 05:18:18 +0000
commit33bf99b7852ff20eaa45e0a5196395dc1a6c645d (patch)
tree3e5605bc65c6e141d0e73d648d2bf1c1ec8c5aa7
parent4d85ff1e045b0a46d78f81fbf57ea4c4ad85c40f (diff)
downloadruby-33bf99b7852ff20eaa45e0a5196395dc1a6c645d.tar.gz
fix a label for bundled gems.
"bundle gems" is a wrong name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rwxr-xr-xtool/rbinstall.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index a33211430c..fc45897d40 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -758,10 +758,10 @@ def install_default_gem(dir, srcdir)
end
end
-install?(:ext, :comm, :gem, :'bundle-gems') do
+install?(:ext, :comm, :gem, :'bundled-gems') do
gem_dir = Gem.default_dir
directories = Gem.ensure_gem_subdirectories(gem_dir, :mode => $dir_mode)
- prepare "bundle gems", gem_dir, directories
+ prepare "bundled gems", gem_dir, directories
install_dir = with_destdir(gem_dir)
installed_gems = {}
options = {
@@ -819,7 +819,7 @@ install?(:ext, :comm, :gem, :'bundle-gems') do
# fix .gemspec permissions
File.chmod($data_mode, *Dir.glob(install_dir+"/specifications/*.gemspec"))
else
- puts "skip installing bundle gems because of lacking zlib"
+ puts "skip installing bundled gems because of lacking zlib"
end
end