From c13905d24b4f4e336c44d998d6fc0473b2303cbe Mon Sep 17 00:00:00 2001 From: yugui Date: Sat, 23 May 2009 16:07:46 +0000 Subject: * configure.in ($ridir): new configuration. [ruby-core:23520]. c.f. [ruby-core:23519]. (--with-ridir): new configure option. * tool/instruby.rb (:doc, :rdoc): uses $ridir instead of a fixed path. * lib/rdoc/ri/paths.rb: follows $ridir. * Makefile.in: removes RIDATADIR which is no longer used. * bcc32/Makefile.sub: generates the 'ridir' entry for RbConfig. removes RIDATADIR which is no longer used. * win32/Makefile.sub: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23554 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/instruby.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tool') diff --git a/tool/instruby.rb b/tool/instruby.rb index 601c23675..852a06d0f 100755 --- a/tool/instruby.rb +++ b/tool/instruby.rb @@ -364,7 +364,7 @@ end install?(:doc, :rdoc) do if $rdocdir - ridatadir = File.join(CONFIG['datadir'], "ri", CONFIG['ruby_version'], "system") + ridatadir = File.join(CONFIG['ridir'], CONFIG['ruby_version'], "system") prepare "rdoc", ridatadir install_recursive($rdocdir, ridatadir, :mode => $data_mode) end -- cgit