diff options
author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-22 04:10:32 +0000 |
---|---|---|
committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-22 04:10:32 +0000 |
commit | 150441b1fcfec38562c395d5e03c6fd883e45957 (patch) | |
tree | d2fafa4f64ad47cbdff15fe9ccf0f0851a6ce5a4 | |
parent | a15c3f7b2464eff86ec0a1de89518e4d5a57d811 (diff) | |
download | ruby-150441b1fcfec38562c395d5e03c6fd883e45957.tar.gz ruby-150441b1fcfec38562c395d5e03c6fd883e45957.tar.xz ruby-150441b1fcfec38562c395d5e03c6fd883e45957.zip |
* 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
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/fileutils.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sat Nov 22 13:10:10 2003 Minero Aoki <aamine@loveruby.net> + + * lib/fileutils.rb (have_st_ino?): djgpp has valid st_ino. + Sat Nov 22 11:28:48 2003 Yukihiro Matsumoto <matz@ruby-lang.org> * 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 ) |