aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-10 06:12:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-10 06:12:22 +0000
commit499a1e5b3e438a4c9d4a240895cc56c41e1280d5 (patch)
tree92f64e73e7aad8ddb3beda5172c9e86ac2acd3e0 /Makefile.in
parent5abfe357d2a8d3111841d2917d8ce286b47a0db9 (diff)
downloadruby-499a1e5b3e438a4c9d4a240895cc56c41e1280d5.tar.gz
MFLAGS for nmake
* common.mk (mflags): pass make flags to sub-makes, for nmake which cannot pass them by the environment variable. * defs/gmake.mk (mflags): filter out -j option for sub-makes. * template/exts.mk.tmpl (MFLAGS): extract MFLAGS from sub extmk files for nmake. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 012ed954d2..569581efef 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -423,7 +423,7 @@ clean-ext distclean-ext realclean-ext::
cd ..; \
for dir do \
echo $(@:-ext=)ing "$$dir"; \
- (cd "ext/$$dir" && exec $(MAKE) $(@:-ext=)) && \
+ (cd "ext/$$dir" && exec $(MAKE) $(mflags) $(@:-ext=)) && \
case "$@" in \
*distclean-ext*|*realclean-ext*) \
$(RMDIRS) "ext/$$dir" 2> /dev/null || true;; \