summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-07-21 21:26:56 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-07-21 21:26:56 +0000
commit6abe539cfc9b91178be7e1d75173165dcf6ca1bc (patch)
tree79e0cbed39c054882ac9753af0c74bc2f11bd92c /Makefile.in
parent3afa01255dfbc80bd4830d4d18f1d394c0e54202 (diff)
* configure.in (RMDIR): use --ignore-fail-on-non-empty if possible.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 02cfa1c3e7..ea79f27815 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -105,6 +105,7 @@ MAKEDIRS = @MKDIR_P@
CP = cp
MV = mv
RM = rm -f
+RMDIR = @RMDIR@
RMDIRS = @RMDIRS@
RMALL = @RMALL@
NM = @NM@
@@ -273,7 +274,7 @@ clean-ext distclean-ext realclean-ext::
done
distclean-ext realclean-ext::
- @-rmdir ext 2> /dev/null || true
+ @-$(RMDIR) ext 2> /dev/null || true
clean-extout:
@-$(RMDIRS) $(EXTOUT) 2> /dev/null || true