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