summaryrefslogtreecommitdiff
path: root/ext/extmk.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/extmk.rb')
-rwxr-xr-xext/extmk.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb
index e9f5eb5280..97604cf965 100755
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -773,10 +773,10 @@ if $configure_only and $command_output
mf.puts "\n""note:\n"
unless fails.empty?
mf.puts %Q<\t@echo "*** Following extensions failed to configure:">
- fails.each do |d, n, e|
+ fails.each do |d, n, err|
d = "#{d}:#{n}:"
- if e
- d << " " << e
+ if err
+ d << " " << err
end
mf.puts %Q<\t@echo "#{d}">
end