mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (configuration): shouldn't output hdrdir twice.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fbe5252b14
commit
07f61642e4
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Apr 11 15:24:20 2005 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (configuration): shouldn't output hdrdir twice.
|
||||
|
||||
Sat Apr 9 18:20:31 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||
|
||||
* ext/tk/lib/tk/image.rb: support to create TkImage object without
|
||||
|
|
|
@ -862,7 +862,7 @@ VPATH = #{vpath.join(CONFIG['PATH_SEPARATOR'])}
|
|||
end
|
||||
CONFIG.each do |key, var|
|
||||
next if /^abs_/ =~ key
|
||||
next unless /^(?:src|top|(.*))dir$/ =~ key and $1
|
||||
next unless /^(?:src|top|hdr|(.*))dir$/ =~ key and $1
|
||||
mk << "#{key} = #{with_destdir(var.sub(drive, ''))}\n"
|
||||
end
|
||||
mk << %{
|
||||
|
|
Loading…
Reference in a new issue