Actions
Feature #4076
closed./configure --without-sitedir --without-vendordir
Status:
Closed
Assignee:
-
Target version:
-
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
Actions
Like0
Like0