From 6b34fa44aa3962c8d34f838b13602772cb384968 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 14 Sep 2009 19:25:05 +0000 Subject: [PATCH] * configure.in (RDOCTARGET): use install-all. [ruby-dev:39334] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24928 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9aa50b1fd1..f6affcfdb8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Sep 15 04:25:03 2009 Nobuyoshi Nakada + + * configure.in (RDOCTARGET): use install-all. [ruby-dev:39334] + Tue Sep 15 03:00:35 2009 Yukihiro Matsumoto * string.c (rb_str_lstrip_bang): use ascii_isspace(). [ruby-dev:39322] diff --git a/configure.in b/configure.in index 02e00282f1..0cc637dd83 100644 --- a/configure.in +++ b/configure.in @@ -2120,7 +2120,7 @@ AC_ARG_ENABLE(install-doc, AS_HELP_STRING([--disable-install-doc], [do not install rdoc indexes during install]), [install_doc=$enableval], [install_doc=yes]) if test "$install_doc" != no; then - RDOCTARGET="rdoc" + RDOCTARGET="all" else RDOCTARGET="nodoc" fi