diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-15 06:16:16 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-15 06:16:16 +0000 |
| commit | 6e55056c58bc18dead0d06c610e00bd5bbb1e073 (patch) | |
| tree | 1cc8913453f392b77a492d826235c62c18ebcf45 | |
| parent | 96a695ed422af237382da738c8951c644c5810fe (diff) | |
| download | ruby-6e55056c58bc18dead0d06c610e00bd5bbb1e073.tar.gz ruby-6e55056c58bc18dead0d06c610e00bd5bbb1e073.tar.xz ruby-6e55056c58bc18dead0d06c610e00bd5bbb1e073.zip | |
* common.mk (install-rdoc), configure.in (RDOCTARGET): removed
circular dependency. [ruby-dev:39339]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | common.mk | 1 | ||||
| -rw-r--r-- | configure.in | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Sep 15 15:16:14 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * common.mk (install-rdoc), configure.in (RDOCTARGET): removed + circular dependency. [ruby-dev:39339] + Tue Sep 15 15:09:13 2009 NAKAMURA Usaku <usa@ruby-lang.org> * win32/configure.bat: need a space before a tab to output the tab by @@ -173,6 +173,7 @@ ruby.imp: $(EXPORTOBJS) @$(NM) -Pgp $(EXPORTOBJS) | awk 'BEGIN{print "#!"}; $$2~/^[BD]$$/{print $$1}' | sort -u -o $@ install: install-$(RDOCTARGET) +install-rdoc: install-all doc-all: rdoc capi install-all: doc-all pre-install-all do-install-all post-install-all diff --git a/configure.in b/configure.in index 03a03050e..2221281c3 100644 --- a/configure.in +++ b/configure.in @@ -2127,7 +2127,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="all" + RDOCTARGET="rdoc" else RDOCTARGET="nodoc" fi |
