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 )