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