Blame SOURCES/ruby-2.0.0-p247-Make-stable-Gem-Specification.files-in-default-.gems.patch

79386f
From fb9fcc8b01d968c62577756cbfd00f20a10b5cbf Mon Sep 17 00:00:00 2001
79386f
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
79386f
Date: Tue, 9 Jul 2013 12:32:49 +0200
79386f
Subject: [PATCH] Make stable Gem::Specification.files in default .gemspecs
79386f
79386f
Although the .gemspec files for default gems are same in function, the
79386f
different order of their "s.files" makes them different therefore
79386f
possibly conflicting in multilib scenario.
79386f
---
79386f
 tool/rbinstall.rb | 2 +-
79386f
 1 file changed, 1 insertion(+), 1 deletion(-)
79386f
79386f
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
79386f
index 1063fac..fb2fcee 100755
79386f
--- a/tool/rbinstall.rb
79386f
+++ b/tool/rbinstall.rb
79386f
@@ -592,7 +592,7 @@ module RbInstall
79386f
       end
79386f
 
79386f
       def collect
79386f
-        ruby_libraries + built_libraries
79386f
+        (ruby_libraries + built_libraries).sort
79386f
       end
79386f
 
79386f
       private
79386f
-- 
79386f
1.8.3.1
79386f