summaryrefslogtreecommitdiff
path: root/enc
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 /enc
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 'enc')
-rw-r--r--enc/Makefile.in2
-rw-r--r--enc/depend4
2 files changed, 4 insertions, 2 deletions
diff --git a/enc/Makefile.in b/enc/Makefile.in
index 8ba04f374a..ad0c626945 100644
--- a/enc/Makefile.in
+++ b/enc/Makefile.in
@@ -48,6 +48,8 @@ RUBY = $(MINIRUBY)
WORKDIRS = $(ENCSODIR) $(TRANSSODIR) enc enc/trans
RM = @RM@
+RMDIR = @RMDIR@
+RMDIRS = @RMDIRS@
MAKEDIRS = @MAKEDIRS@
.SUFFIXES: .trans
diff --git a/enc/depend b/enc/depend
index 7186179ef0..6705beb2bf 100644
--- a/enc/depend
+++ b/enc/depend
@@ -133,11 +133,11 @@ clean:
@$(RM) <%=pathrep[clean]%>
% end
% %w[$(TRANSSODIR) $(ENCSODIR)].each do|dir|
- @-rmdir <%=pathrep[dir]%>
+ @-$(RMDIR) <%=pathrep[dir]%>
% end
clean-srcs:
@$(RM) <%=pathrep['$(TRANSCSRCS)']%>
% %w[enc/trans enc].each do|dir|
- @-rmdir <%=pathrep[dir]%>
+ @-$(RMDIR) <%=pathrep[dir]%>
% end