summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-16 04:16:19 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-16 04:16:19 +0000
commit83cff823d76f858bc1af0ecb227d2edd10f755f6 (patch)
tree19375a85f178f2985fe01f00dc9e508490556a34
parent36159149ea41780e0ebc7bbfbfe0edfb8eb78f59 (diff)
downloadruby-83cff823d76f858bc1af0ecb227d2edd10f755f6.tar.gz
ruby-83cff823d76f858bc1af0ecb227d2edd10f755f6.tar.xz
ruby-83cff823d76f858bc1af0ecb227d2edd10f755f6.zip
* template/Doxyfile.tmpl: RbConfig::CONFIG['DOT'] is sometimes nil.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--template/Doxyfile.tmpl2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d772b35df..dd13d8454 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Sep 16 13:15:17 2009 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * template/Doxyfile.tmpl: RbConfig::CONFIG['DOT'] is sometimes nil.
+
Wed Sep 16 10:14:54 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* README.EXT, README.EXT.ja (rb_protect, rb_jump_tag): added.
diff --git a/template/Doxyfile.tmpl b/template/Doxyfile.tmpl
index 0fd9462c6..34a42983c 100644
--- a/template/Doxyfile.tmpl
+++ b/template/Doxyfile.tmpl
@@ -12,7 +12,7 @@ unless miniruby
miniruby = './miniruby$(EXEEXT) -I$(srcdir)/lib -I$(EXTOUT)/common -I./- -r$(srcdir)/ext/purelib.rb'
RbConfig.expand(miniruby, RbConfig::CONFIG.merge("srcdir"=>srcdir))
end
-dot = RbConfig::CONFIG['DOT']
+dot = RbConfig::CONFIG['DOT'] || ""
have_dot = dot.empty? ? "NO" : "YES"
%>
#---------------------------------------------------------------------------