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/branches/ruby_1_8@24936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-09-15 06:16:16 +00:00
parent 07f8c878e9
commit 18ffdcf741
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 10:48:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* common.mk (install-all): target to install all.

View file

@ -112,6 +112,7 @@ ruby.imp: $(OBJS)
@$(NM) -Pgp $(OBJS) | awk 'BEGIN{print "#!"}; $$2~/^[BD]$$/{print $$1}' | sort -u -o $@
install: install-$(RDOCTARGET)
install-rdoc: install-all
doc-all: rdoc
install-all: doc-all pre-install-all do-install-all post-install-all

View file

@ -1608,7 +1608,7 @@ AC_ARG_ENABLE(install-doc,
AS_HELP_STRING([--enable-install-doc], [build and install rdoc indexes during install ]),
[install_doc=$enableval], [install_doc=no])
if test "$install_doc" != no; then
RDOCTARGET="all"
RDOCTARGET="rdoc"
else
RDOCTARGET="nodoc"
fi