From 061f8361daec6b4f9c77384af41b27e3980626bb Mon Sep 17 00:00:00 2001 From: aamine Date: Sat, 22 Nov 2003 04:10:32 +0000 Subject: [PATCH] * lib/fileutils.rb (have_st_ino?): djgpp has valid st_ino. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/fileutils.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 058d86b4f8..84c3cc83e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Nov 22 13:10:10 2003 Minero Aoki + + * lib/fileutils.rb (have_st_ino?): djgpp has valid st_ino. + Sat Nov 22 11:28:48 2003 Yukihiro Matsumoto * gc.c (Init_stack): stack region is far smaller than usual if diff --git a/lib/fileutils.rb b/lib/fileutils.rb index dbab74aae0..ee62f5838b 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -751,7 +751,7 @@ module FileUtils end def have_st_ino? - /djgpp|mswin|mingw|bccwin|wince|emx/ !~ RUBY_PLATFORM + /mswin|mingw|bccwin|wince|emx/ !~ RUBY_PLATFORM end def fu_stream_blksize( *streams )