* ext/extmk.rb (extmake): check if compile before showing message.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17433 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-06-19 12:43:57 +00:00
Родитель 88a374f59f
Коммит 8aa74a17ef
1 изменённых файлов: 5 добавлений и 10 удалений

Просмотреть файл

@ -87,15 +87,6 @@ end
def extmake(target)
print "#{$message} #{target}\n"
$stdout.flush
if $force_static or $static_ext[target]
$static = target
else
$static = false
end
unless $ignore
return true if $nodynamic and not $static
end
FileUtils.mkpath target unless File.directory?(target)
begin
@ -439,7 +430,11 @@ Dir::chdir('ext')
hdrdir = $hdrdir
$hdrdir = ($top_srcdir = relative_from(srcdir, $topdir = "..")) + "/include"
exts.each do |d|
extmake(d) or abort
$static = $force_static ? $static_ext[target] : false
if $ignore or !$nodynamic or $static
extmake(d) or abort
end
end
$top_srcdir = srcdir
$topdir = "."