From e91c04e2e97ced1031200477c3ca1d4144f76989 Mon Sep 17 00:00:00 2001 From: kou Date: Sat, 10 Nov 2012 03:15:55 +0000 Subject: [PATCH] * tool/rbinstall.rb: Don't install *.gemspec under lib/. [ruby-core:48966] [Bug #7289] Reported by Vit Ondruch. Thanks!!! git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ tool/rbinstall.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 299b0ed1d8..f9220d1b00 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Nov 10 12:13:41 2012 Kouhei Sutou + + * tool/rbinstall.rb: Don't install *.gemspec under lib/. + [ruby-core:48966] [Bug #7289] + Reported by Vit Ondruch. Thanks!!! + Sat Nov 10 00:49:26 2012 Naohisa Goto * ruby_atomic.h: renamed from atomic.h to avoid header file name diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb index 26eab1cd01..f5faccae32 100755 --- a/tool/rbinstall.rb +++ b/tool/rbinstall.rb @@ -499,7 +499,7 @@ end install?(:local, :comm, :lib) do prepare "library scripts", rubylibdir - noinst = %w[README* *.txt *.rdoc] + noinst = %w[README* *.txt *.rdoc *.gemspec] install_recursive(File.join(srcdir, "lib"), rubylibdir, :no_install => noinst, :mode => $data_mode) end