From 150441b1fcfec38562c395d5e03c6fd883e45957 Mon Sep 17 00:00:00 2001 From: aamine Date: Sat, 22 Nov 2003 04:10:32 +0000 Subject: * lib/fileutils.rb (have_st_ino?): djgpp has valid st_ino. git-svn-id: http://svn.ruby-lang.org/repos/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 058d86b4f..84c3cc83e 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 dbab74aae..ee62f5838 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 ) -- cgit