From: Leo Baltus Date: 2010-11-20T20:25:12+09:00 Subject: [ruby-core:33267] [Ruby 1.9-Bug#4076][Open] ./configure --without-sitedir --without-vendordir Bug #4076: ./configure --without-sitedir --without-vendordir http://redmine.ruby-lang.org/issues/show/4076 Author: Leo Baltus Status: Open, Priority: Normal ruby -v: ruby 1.9.2p0 (2010-08-18 revision 29036) [i686-linux] To prevent unnecesary stat()'s we like to keep the include list as short as possible so we decided to configure ruby-1.9.2-p0: ./configure --without-sitedir --without-vendordir --prefix=/myprefix This however results in the following : $ ruby -e 'puts $:.join("\n")' no/1.9.1 no/1.9.1/i686-linux no no/1.9.1 no/1.9.1/i686-linux no /myprefix/lib/ruby/1.9.1 /myprefix/lib/ruby/1.9.1/i686-linux I assume the 'no' result from autoconfig is not taken into account. If this gets fixed, we think it would result in better startup-times. Expected result: $ ruby -e 'puts $:.join("\n")' /myprefix/lib/ruby/1.9.1 /myprefix/lib/ruby/1.9.1/i686-linux ---------------------------------------- http://redmine.ruby-lang.org