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