ruby-changes:22399
From: naruse <ko1@a...>
Date: Mon, 6 Feb 2012 21:53:28 +0900 (JST)
Subject: [ruby-changes:22399] naruse:r34448 (ruby_1_9_3): merge revision(s) 33886: [Backport #5682]
naruse 2012-02-06 21:53:11 +0900 (Mon, 06 Feb 2012) New Revision: 34448 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34448 Log: merge revision(s) 33886: [Backport #5682] * common.mk (INSTRUBY_ARGS): added --mantype to apply mdoc2man.rb to man pages. Fixes #5598. (do-install-nodoc, do-install-local, do-install-man, dont-install-nodoc, dont-install-local, dont-install-man): No longer needs --mantype. Reported by Rainer Orth <ro AT cebitec.uni-bielefeld.de>, patch by George Koehler <xkernigh AT netscape.net>. Modified files: branches/ruby_1_9_3/ChangeLog branches/ruby_1_9_3/common.mk branches/ruby_1_9_3/version.h Index: ruby_1_9_3/ChangeLog =================================================================== --- ruby_1_9_3/ChangeLog (revision 34447) +++ ruby_1_9_3/ChangeLog (revision 34448) @@ -1,3 +1,14 @@ +Mon Feb 6 21:52:20 2012 Yuki Sonoda (Yugui) <yugui@y...> + + * common.mk (INSTRUBY_ARGS): added --mantype to apply mdoc2man.rb + to man pages. Fixes #5598. + (do-install-nodoc, do-install-local, do-install-man, + dont-install-nodoc, dont-install-local, dont-install-man): + No longer needs --mantype. + + Reported by Rainer Orth <ro AT cebitec.uni-bielefeld.de>, + patch by George Koehler <xkernigh AT netscape.net>. + Mon Feb 6 21:21:46 2012 NAKAMURA Usaku <usa@r...> * test/unit/assertions.rb (MINI_DIR): quick dirty hack to get rid of Index: ruby_1_9_3/common.mk =================================================================== --- ruby_1_9_3/common.mk (revision 34447) +++ ruby_1_9_3/common.mk (revision 34448) @@ -123,7 +123,8 @@ INSTRUBY_ARGS = $(SCRIPT_ARGS) \ --data-mode=$(INSTALL_DATA_MODE) \ --prog-mode=$(INSTALL_PROG_MODE) \ - --installed-list $(INSTALLED_LIST) + --installed-list $(INSTALLED_LIST) \ + --mantype="$(MANTYPE)" INSTALL_PROG_MODE = 0755 INSTALL_DATA_MODE = 0644 @@ -239,13 +240,13 @@ install-nodoc: pre-install-nodoc do-install-nodoc post-install-nodoc pre-install-nodoc:: pre-install-local pre-install-ext do-install-nodoc: $(PREP) - $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --mantype="$(MANTYPE)" + $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) post-install-nodoc:: post-install-local post-install-ext install-local: pre-install-local do-install-local post-install-local pre-install-local:: pre-install-bin pre-install-lib pre-install-man do-install-local: $(PREP) - $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=local --mantype="$(MANTYPE)" + $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=local post-install-local:: post-install-bin post-install-lib post-install-man install-ext: pre-install-ext do-install-ext post-install-ext @@ -297,7 +298,7 @@ install-man: pre-install-man do-install-man post-install-man pre-install-man:: install-prereq do-install-man: $(PREP) - $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=man --mantype="$(MANTYPE)" + $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=man post-install-man:: @$(NULLCMD) @@ -322,14 +323,14 @@ no-install-nodoc: pre-no-install-nodoc dont-install-nodoc post-no-install-nodoc pre-no-install-nodoc:: pre-no-install-local pre-no-install-ext dont-install-nodoc: $(PREP) - $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --mantype="$(MANTYPE)" + $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) post-no-install-nodoc:: post-no-install-local post-no-install-ext what-where-local: no-install-local no-install-local: pre-no-install-local dont-install-local post-no-install-local pre-no-install-local:: pre-no-install-bin pre-no-install-lib pre-no-install-man dont-install-local: $(PREP) - $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=local --mantype="$(MANTYPE)" + $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=local post-no-install-local:: post-no-install-bin post-no-install-lib post-no-install-man what-where-ext: no-install-ext @@ -389,7 +390,7 @@ no-install-man: pre-no-install-man dont-install-man post-no-install-man pre-no-install-man:: install-prereq dont-install-man: $(PREP) - $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=man --mantype="$(MANTYPE)" + $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=man post-no-install-man:: @$(NULLCMD) Index: ruby_1_9_3/version.h =================================================================== --- ruby_1_9_3/version.h (revision 34447) +++ ruby_1_9_3/version.h (revision 34448) @@ -1,5 +1,5 @@ #define RUBY_VERSION "1.9.3" -#define RUBY_PATCHLEVEL 42 +#define RUBY_PATCHLEVEL 43 #define RUBY_RELEASE_DATE "2012-02-06" #define RUBY_RELEASE_YEAR 2012 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/