Hallo George, Am 2002-03-30 um 20:32 schriebst du:
> To reproduce the bug: > perl -e 'use File::Spec; print File::Spec->file_name_is_absolute("C:/test") > ? "no bug" : "bug";' file_name_is_absolute Takes as argument a path and returns true if it is an absolute path. $is_absolute = File::Spec->file_name_is_absolute( $path ); This does not consult the local filesystem on Unix, Win32, OS/2, or Mac OS (Classic). It does consult the working environment for VMS (see "file_name_is_absolute" in File::Spec::VMS). > To fix the bug add a line What is the problem here? We try to emulate a POSIX filesystem with all its advantages. perl -e 'use File::Spec; $print = File::Spec->file_name_is_absolute("C:/test"); \ if (defined $print) {print "No Bug;)\n"};' > cygwin => 'Win32', Use ActivePerl if you need windows features. > at the beginning of File/Spec.pm in the definition of the %modules hash > table. Gerrit -- =^..^= -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/