diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-04-21 02:43:25 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-04-21 02:43:25 +0000 |
commit | 3ca61bb04e668e14da9525a7de3fc1167d1e1859 () | |
tree | f193885db8def39ee1d25909af1c688e04bfda43 /ext | |
parent | 5651313b8556b1a32ee80e33107db2dec74f1ed5 (diff) |
exts.mk: refine notes [Feature #13302]
* ext/extmk.rb: split notes into header and footer, which are common, from bodies which are unique for each extensions. * template/exts.mk.tmpl: now each notes are not one line, should not unique. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58425 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rwxr-xr-x | ext/extmk.rb | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -679,6 +679,8 @@ begin submakeopts << 'UPDATE_LIBRARIES="$(UPDATE_LIBRARIES)"' submakeopts << 'SHOWFLAGS=' mf.macro "SUBMAKEOPTS", submakeopts mf.puts targets = %w[all install static install-so install-rb clean distclean realclean] targets.each do |tgt| @@ -720,10 +722,14 @@ begin mf.puts "\n""note:\n" unless fails.empty? abandon = false - mf.puts %Q<\t@echo "*** Following extensions are not compiled:"> fails.each do |ext, (parent, err)| abandon ||= mandatory_exts[ext] - mf.puts %Q<\t@echo "#{ext}:"> if parent mf.puts %Q<\t@echo "\tCould not be configured. It will not be installed."> err and err.scan(/.+/) do |ee| @@ -734,7 +740,8 @@ begin mf.puts %Q<\t@echo "\tSkipped because its parent was not configured."> end end - mf.puts %Q<\t@echo "*** Fix the problems, then remove these directories and try again if you want."> if abandon mf.puts "\t""@exit 1" end |