1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/extmk.rb (extmake): initialize $objs before extrace_makefile.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22721 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-03-03 06:28:55 +00:00
parent 91dd419efb
commit 2233d34b39

View file

@ -137,6 +137,7 @@ def extmake(target)
}
begin
$extconf_h = nil
$objs = []
ok &&= extract_makefile(makefile)
old_objs = $objs
conf = ["#{$srcdir}/makefile.rb", "#{$srcdir}/extconf.rb"].find {|f| File.exist?(f)}