aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-01 04:54:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-01 04:54:04 +0000
commitab15584a3a80e0239a25b0e4cc3ed1221ba1af5c (patch)
treed010c1ac69752ddd7490297d4dcc27df9fa37ad2 /template
parenta149632569d04200052e3e1a52263c3533c36637 (diff)
downloadruby-ab15584a3a80e0239a25b0e4cc3ed1221ba1af5c.tar.gz
common.mk: remove explicit MFLAGS
It is unnecessary to pass MFLAGS to sub-makes, because it is evaluated implicitly if set by make. GNU make 4.2 sets both of -jN and --jobserver-auth (or --jobserver-fds in older versions) options which conflict. And it is useless for command line macros since Microsoft NMAKE does not set them. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57489 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'template')
-rw-r--r--template/exts.mk.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/template/exts.mk.tmpl b/template/exts.mk.tmpl
index 6215e5da0e..bf110c5c94 100644
--- a/template/exts.mk.tmpl
+++ b/template/exts.mk.tmpl
@@ -111,17 +111,17 @@ distclean:
% rubies.each do |ruby|
<%= ruby %>:
- $(Q)$(MAKE) $(MFLAGS) $(SUBMAKEOPTS) $@
+ $(Q)$(MAKE) $(SUBMAKEOPTS) $@
% end
libencs:
$(Q)$(MAKE) -f enc.mk V=$(V) $@
ext/extinit.<%=objext%>:
- $(Q)$(MAKE) $(MFLAGS) V=$(V) EXTINITS="$(EXTINITS)" $@
+ $(Q)$(MAKE) V=$(V) EXTINITS="$(EXTINITS)" $@
% targets.product(macros["extensions"].map {|e|e.chomp("/.")}) do |t, e|
<%=e%>/<%=t%>:
- $(Q)<%= submake %> $(MFLAGS) V=$(V) $(@F)
+ $(Q)<%= submake %> V=$(V) $(@F)
% end
extso: