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

* lib/fileutils.rb (cannot_overwrite_file?, have_st_ino?): bccwin32

is same as mswin32.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2003-11-19 02:06:37 +00:00
parent 54ebae1ba1
commit 0a50ed6611
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Wed Nov 19 11:04:47 2003 NAKAMURA Usaku <usa@ruby-lang.org>
* lib/fileutils.rb (cannot_overwrite_file?, have_st_ino?): bccwin32
is same as mswin32.
Tue Nov 19 07:54:00 2003 Nathaniel Talbott <ntalbott@ruby-lang.org>
* lib/test/unit.rb: do not run tests if $! is set.

View file

@ -465,7 +465,7 @@ module FileUtils
alias move mv
def cannot_overwrite_file? #:nodoc:
/djgpp|cygwin|mswin|mingw/ === RUBY_PLATFORM
/djgpp|cygwin|mswin|mingw|bccwin/ === RUBY_PLATFORM
end
private :cannot_overwrite_file?
@ -749,7 +749,7 @@ module FileUtils
end
def have_st_ino?
/mswin|mingw/ !~ RUBY_PLATFORM
/mswin|mingw|bccwin/ !~ RUBY_PLATFORM
end
def fu_stream_blksize( *streams )