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:
parent
07f8c878e9
commit
18ffdcf741
3 changed files with 7 additions and 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 10:48:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Tue Sep 15 10:48:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* common.mk (install-all): target to install all.
|
* common.mk (install-all): target to install all.
|
||||||
|
|
|
@ -112,6 +112,7 @@ ruby.imp: $(OBJS)
|
||||||
@$(NM) -Pgp $(OBJS) | awk 'BEGIN{print "#!"}; $$2~/^[BD]$$/{print $$1}' | sort -u -o $@
|
@$(NM) -Pgp $(OBJS) | awk 'BEGIN{print "#!"}; $$2~/^[BD]$$/{print $$1}' | sort -u -o $@
|
||||||
|
|
||||||
install: install-$(RDOCTARGET)
|
install: install-$(RDOCTARGET)
|
||||||
|
install-rdoc: install-all
|
||||||
doc-all: rdoc
|
doc-all: rdoc
|
||||||
|
|
||||||
install-all: doc-all pre-install-all do-install-all post-install-all
|
install-all: doc-all pre-install-all do-install-all post-install-all
|
||||||
|
|
|
@ -1608,7 +1608,7 @@ AC_ARG_ENABLE(install-doc,
|
||||||
AS_HELP_STRING([--enable-install-doc], [build and install rdoc indexes during install ]),
|
AS_HELP_STRING([--enable-install-doc], [build and install rdoc indexes during install ]),
|
||||||
[install_doc=$enableval], [install_doc=no])
|
[install_doc=$enableval], [install_doc=no])
|
||||||
if test "$install_doc" != no; then
|
if test "$install_doc" != no; then
|
||||||
RDOCTARGET="all"
|
RDOCTARGET="rdoc"
|
||||||
else
|
else
|
||||||
RDOCTARGET="nodoc"
|
RDOCTARGET="nodoc"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue