[前][次][番号順一覧][スレッド一覧]

ruby-changes:17011

From: akr <ko1@a...>
Date: Mon, 16 Aug 2010 17:47:11 +0900 (JST)
Subject: [ruby-changes:17011] Ruby:r29008 (trunk): * common.mk (capi): use -b option for doxygen. It disables stdout

akr	2010-08-16 17:46:53 +0900 (Mon, 16 Aug 2010)

  New Revision: 29008

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29008

  Log:
    * common.mk (capi): use -b option for doxygen.  It disables stdout
      buffering and prevents wrong reordering between stdout and stderr
      even when the output of "make" is redirected.

  Modified files:
    trunk/ChangeLog
    trunk/common.mk

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29007)
+++ ChangeLog	(revision 29008)
@@ -1,3 +1,9 @@
+Mon Aug 16 17:44:55 2010  Tanaka Akira  <akr@f...>
+
+	* common.mk (capi): use -b option for doxygen.  It disables stdout
+	  buffering and prevents wrong reordering between stdout and stderr
+	  even when the output of "make" is redirected.
+
 Sun Aug 15 19:59:58 2010  Yuki Sonoda (Yugui)  <yugui@y...>
 
 	* lib/webrick/httpresponse.rb (WEBrick::HTTPResponse#set_error):
Index: common.mk
===================================================================
--- common.mk	(revision 29007)
+++ common.mk	(revision 29008)
@@ -150,7 +150,7 @@
 	$(MAKE) $(MFLAGS) MAINOBJ="$(GOLFOBJS)" PROGRAM=$(GORUBY)$(EXEEXT) program
 capi: Doxyfile PHONY $(PREP)
 	@$(MAKEDIRS) doc/capi
-	@$(DOXYGEN)
+	@$(DOXYGEN) -b
 
 Doxyfile: $(srcdir)/template/Doxyfile.tmpl $(PREP) $(srcdir)/tool/generic_erb.rb $(RBCONFIG)
 	$(MINIRUBY) $(srcdir)/tool/generic_erb.rb -o $@ $(srcdir)/template/Doxyfile.tmpl \

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]