aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-20 08:13:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-20 08:13:16 +0000
commitaa033295511bd26d675641bb790b28b1f4dd830f (patch)
tree335757db8e49f5003df31c2150010df3ca01d224 /template
parent0cb88e356496ce1f6df71c47ee5c08afe2c6648b (diff)
downloadruby-aa033295511bd26d675641bb790b28b1f4dd830f.tar.gz
extmk.rb: fail for mandatory libraries
* ext/extmk.rb: fail if a mandatory extension library failed to configure. [ruby-core:80759] [Feature #13302] * template/exts.mk.tmpl: move `exit` at the end. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58412 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'template')
-rw-r--r--template/exts.mk.tmpl6
1 files changed, 5 insertions, 1 deletions
diff --git a/template/exts.mk.tmpl b/template/exts.mk.tmpl
index 4d7dc0f2a5..1b2308c4f0 100644
--- a/template/exts.mk.tmpl
+++ b/template/exts.mk.tmpl
@@ -50,8 +50,10 @@ Dir.glob("{ext,gems}/*/exts.mk") do |e|
end
s.scan(%r"^note:\n((?:\t.+\n)+)") do |(n)|
n = n.split(/^/)
+ e = (note.pop if /@exit/ =~ note[-1])
note.pop if n[-1] == note[-1]
note |= n
+ note << e if e
end
end
deps.uniq!
@@ -116,7 +118,9 @@ clean:
distclean:
-$(Q)$(RM) ext/extinit.c
-<%= deps.join("\n") %>
+% deps.each do |d|
+<%= d %>
+% end
% rubies.each do |ruby|
<%= ruby %>: