aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtool/rbinstall.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index c6f869f88b..4385ec9662 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -678,10 +678,12 @@ module RbInstall
return if path == destination_dir
File.chmod(0700, destination_dir)
mode = pattern == "bin/*" ? $script_mode : $data_mode
- install_recursive(path, without_destdir(destination_dir),
- :glob => pattern,
- :no_install => "*.gemspec",
- :mode => mode)
+ spec.files.each do |f|
+ src = File.join(path, f)
+ dest = File.join(without_destdir(destination_dir), f)
+ makedirs(dest[/.*(?=\/)/m])
+ install src, dest, :mode => mode
+ end
File.chmod($dir_mode, destination_dir)
end
end