Feature #4076
closed./configure --without-sitedir --without-vendordir
Description
=begin
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
=end
Updated by nobu (Nobuyoshi Nakada) over 14 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
=begin
This issue was solved with changeset r29877.
Leo, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end