summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-16 08:46:53 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-16 08:46:53 +0000
commit03226ec1a6fe6e6d3898c4fb897c80d0344b1471 (patch)
tree9eccfacd9924e7bac1a90328b3bdc91d5e796a7b /common.mk
parent29b30b66f3eaba883827b3da607e3dc31a45e0ad (diff)
* 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. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mk b/common.mk
index 967a599c51..88cb6a257f 100644
--- a/common.mk
+++ b/common.mk
@@ -150,7 +150,7 @@ golf: $(LIBRUBY) $(GOLFOBJS) PHONY
$(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 \