* ext/extmk.rb: show extension failures in compilation-mode
  friendly format.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-05-12 23:35:22 +00:00
Родитель 3bdf613a45
Коммит 8cd05857c6
1 изменённых файлов: 11 добавлений и 2 удалений

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

@ -256,7 +256,7 @@ def extmake(target)
Logging::message(error.to_s) if error
Logging::message("Failed to configure #{target}. It will not be installed.\n")
end
return [target, error]
return [conf, error]
end
args = sysquote($mflags)
unless $destdir.to_s.empty? or $mflags.defined?("DESTDIR")
@ -745,7 +745,16 @@ if $configure_only and $command_output
unless fails.empty?
mf.puts %Q<\t@echo "*** Following extensions failed to configure:">
fails.each do |d, e|
mf.puts %Q<\t@echo " #{d}#{e && %Q(: #{e})}">
if e && e.respond_to?(:backtrace_locations)
n = e.backtrace_locations[0].lineno
else
n = 0
end
d = "#{d}:#{n}:"
if e
d << " " << e.message
end
mf.puts %Q<\t@echo "#{d}">
end
mf.puts %Q<\t@echo "*** Fix the problems, then remove these directories and try again if you want.">
end