pvalena / rpms / ruby

Forked from rpms/ruby 6 years ago
Clone
a03b2d2
From 541f3b85cac00e5b836e018ef8afea4342e0cd39 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
a03b2d2
index 0b99408..7b54966 100755
8ed2f32
--- a/tool/rbinstall.rb
8ed2f32
+++ b/tool/rbinstall.rb
a03b2d2
@@ -608,7 +608,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