From 0a50ed6611bec5e3ce9b1a401ec1ab48462b6f22 Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 19 Nov 2003 02:06:37 +0000 Subject: [PATCH] * 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 --- ChangeLog | 5 +++++ lib/fileutils.rb | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index de274f4c97..d131d4575c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Nov 19 11:04:47 2003 NAKAMURA Usaku + + * lib/fileutils.rb (cannot_overwrite_file?, have_st_ino?): bccwin32 + is same as mswin32. + Tue Nov 19 07:54:00 2003 Nathaniel Talbott * lib/test/unit.rb: do not run tests if $! is set. diff --git a/lib/fileutils.rb b/lib/fileutils.rb index bcc7b8d7d6..18aa862bf7 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 )