diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-19 02:06:37 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-19 02:06:37 +0000 |
commit | 0e8f8cb19d00a83b2cda6ed03edb6277a970708a (patch) | |
tree | cd9d30450d75ea5996e0ecef86bf66e9320932c2 /lib | |
parent | 4560be3bcdb0aceb88c7b9ac630846ec131dc5a7 (diff) | |
download | ruby-0e8f8cb19d00a83b2cda6ed03edb6277a970708a.tar.gz ruby-0e8f8cb19d00a83b2cda6ed03edb6277a970708a.tar.xz ruby-0e8f8cb19d00a83b2cda6ed03edb6277a970708a.zip |
* lib/fileutils.rb (cannot_overwrite_file?, have_st_ino?): bccwin32
is same as mswin32.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fileutils.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fileutils.rb b/lib/fileutils.rb index bcc7b8d7d..18aa862bf 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -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 ) |