aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-09 02:55:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-09 02:55:51 +0000
commit5591fbbe4ef5a3903a96eb3f02d49a0a13ef6017 (patch)
tree36a68c8893cd98676cd1f6fb24c8e196113538a1 /Makefile.in
parent0afa30093aeb6c501f0bfd1266ec66d00d7fd2a7 (diff)
downloadruby-5591fbbe4ef5a3903a96eb3f02d49a0a13ef6017.tar.gz
Ignore fail on non empty ext and gems [ci skip]
* Makefile.in ({ext,gems}/{distclean,realclean}): ignore fail on removal of non empty directories. these directories should not be empty when in-place build. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58613 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 6891d90c79..bfb3ae32d3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -456,7 +456,7 @@ ext/distclean ext/realclean gems/distclean gems/realclean::
test "$$#" = 0 && set .; \
cd $(@D) 2>/dev/null && \
find "$$@" -type d -empty -exec $(RMDIRS) {} + 2> /dev/null || true
- $(Q) $(RMDIRS) $(@D)
+ $(Q) $(RMDIRS) $(@D) 2> /dev/null || true
clean-enc distclean-enc realclean-enc:
@test -f "$(ENC_MK)" || exit 0; \