1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/mkmf.rb (create_makefile): removes directories in the depth

order.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-02-19 05:18:27 +00:00
parent 6784d8fda6
commit fb3fee22ca
2 changed files with 5 additions and 3 deletions

View file

@ -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]

View file

@ -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