1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
hsbt 2017-09-08 05:18:18 +00:00
parent 7b2e74be7d
commit 08c1dde4cc

View file

@ -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