summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/mkmf.rb3
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7262c70644..c9c9e10a93 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,11 @@
-Thu Feb 19 14:14:28 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Thu Feb 19 14:18:25 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/mkmf.rb (create_makefile): creates target directories before
copying. [ruby-core:21958]
+ * lib/mkmf.rb (create_makefile): removes directories in the depth
+ order.
+
Thu Feb 19 13:56:00 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c (rb_home_dir): checks if HAVE_PWD_H. [ruby-dev:38049]
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 40b0c2f58b..6e936c7677 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -1720,10 +1720,9 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
end
if $extout
dirs.uniq!
- dirs.reverse!
unless dirs.empty?
mfile.print("clean-rb#{sfx}::\n")
- for dir in dirs
+ for dir in dirs.sort_by {|dir| -dir.count('/')}
mfile.print("\t@-$(RMDIRS) #{fseprepl[dir]}\n")
end
end