aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorsorah <sorah@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-29 09:24:10 +0000
committersorah <sorah@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-29 09:24:10 +0000
commit535c539b28e99180f990a71544245580eac237a7 (patch)
tree6aaf6d2e66a087d87a92021e450c6303b0dc7256 /Makefile.in
parent80a743388d4b9d5a3f88e219eb40a511c0104720 (diff)
downloadruby-535c539b28e99180f990a71544245580eac237a7.tar.gz
Fix `make clean` errors
Patch by Kohei Suzuki <eagletmt@gmail.com>. * common.mk(clean-rubyspec): Supress error messages when rubyspec files don't exist. [GH-1563] [Bug #13384] * Makefile.in: Fix error when files don't exist. [GH-1563] [Bug #13384] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58207 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 a2a17039c6..07f93ca150 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -421,7 +421,7 @@ ext/distclean.sub gems/distclean.sub:: ext/distclean.mk
ext/realclean.sub gems/realclean.sub:: ext/realclean.mk
ext/clean.mk ext/distclean.mk ext/realclean.mk::
- $(Q) [ -f $(EXTS_MK) ] && exec $(MAKE) -f $(EXTS_MK) $(@F:.mk=)
+ -$(Q) if [ -f $(EXTS_MK) ]; then exec $(MAKE) -f $(EXTS_MK) $(@F:.mk=); fi
ext/clean:: ext/clean.sub
ext/distclean:: ext/distclean.sub