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