mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* template/Doxyfile.tmpl: RbConfig::CONFIG['DOT'] is sometimes nil.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
43be7b67c8
commit
af424b17a0
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
Wed Sep 16 10:14:54 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* README.EXT, README.EXT.ja (rb_protect, rb_jump_tag): added.
|
* README.EXT, README.EXT.ja (rb_protect, rb_jump_tag): added.
|
||||||
|
|
|
@ -12,7 +12,7 @@ unless miniruby
|
||||||
miniruby = './miniruby$(EXEEXT) -I$(srcdir)/lib -I$(EXTOUT)/common -I./- -r$(srcdir)/ext/purelib.rb'
|
miniruby = './miniruby$(EXEEXT) -I$(srcdir)/lib -I$(EXTOUT)/common -I./- -r$(srcdir)/ext/purelib.rb'
|
||||||
RbConfig.expand(miniruby, RbConfig::CONFIG.merge("srcdir"=>srcdir))
|
RbConfig.expand(miniruby, RbConfig::CONFIG.merge("srcdir"=>srcdir))
|
||||||
end
|
end
|
||||||
dot = RbConfig::CONFIG['DOT']
|
dot = RbConfig::CONFIG['DOT'] || ""
|
||||||
have_dot = dot.empty? ? "NO" : "YES"
|
have_dot = dot.empty? ? "NO" : "YES"
|
||||||
%>
|
%>
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue