1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* common.mk (install-rdoc), configure.in (RDOCTARGET): removed

circular dependency.  [ruby-dev:39339]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-09-15 06:16:16 +00:00
parent e455e85f72
commit 4d3dac97ad
3 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -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

View file

@ -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