From: "vo.x (Vit Ondruch)" Date: 2013-04-04T15:16:03+09:00 Subject: [ruby-core:53984] [ruby-trunk - Bug #7807] [PATCH] Remove duplicated load paths when empty version string is configured Issue #7807 has been updated by vo.x (Vit Ondruch). One issue preventing this from work fixed in RubyGems [1]. I am not aware of any other after rebuild of more then 400 of packages in Fedora against Ruby 2.0. Actually, some builds depends on this field in ruby.pc [2], but they would fail the same if I would go with "ruby-version='foo'", which is allowed version string (I hope you are not goint to disable it, since I mentioned it here :) [1] https://github.com/rubygems/rubygems/pull/455 [2] https://bugzilla.redhat.com/show_bug.cgi?id=923703 ---------------------------------------- Bug #7807: [PATCH] Remove duplicated load paths when empty version string is configured https://bugs.ruby-lang.org/issues/7807#change-38205 Author: vo.x (Vit Ondruch) Status: Open Priority: Normal Assignee: nobu (Nobuyoshi Nakada) Category: Target version: ruby -v: ruby 2.0.0dev (2013-02-08 trunk 39161) [x86_64-linux] =begin My configuration options: ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-ruby-version='' --with-rubyhdrdir=/usr/include --with-ruby-pc=ruby.pc --disable-rpath --enable-shared Prior: $ ruby -e "puts $:" /usr/lib64/ruby/site_ruby/ /usr/lib64/ruby/site_ruby//x86_64-linux /usr/lib64/ruby/site_ruby /usr/lib64/ruby/vendor_ruby/ /usr/lib64/ruby/vendor_ruby//x86_64-linux /usr/lib64/ruby/vendor_ruby /usr/lib64/ruby/ /usr/lib64/ruby//x86_64-linux After: $ ruby -e "puts $:" /usr/lib64/ruby/site_ruby /usr/lib64/ruby/site_ruby/x86_64-linux /usr/lib64/ruby/vendor_ruby /usr/lib64/ruby/vendor_ruby/x86_64-linux /usr/lib64/ruby /usr/lib64/ruby/x86_64-linux BTW the duplicated paths caused ActiveSupport test suite errors as far as I remember [1]. Not sure if it was already changed there. [1] https://bugzilla.redhat.com/show_bug.cgi?id=718695 =end -- http://bugs.ruby-lang.org/