]> git.p6c8.net - devedit.git/commitdiff
Windows drive letters are case-insensitive!
authorpcanterino <>
Sun, 13 Feb 2005 10:31:59 +0000 (10:31 +0000)
committerpcanterino <>
Sun, 13 Feb 2005 10:31:59 +0000 (10:31 +0000)
modules/Tool.pm

index acc47220d5999748de0e0bb690d866db6b6c9734..23770a14bc8ab1ddcbd6ca9fd107f08e879df2a4 100644 (file)
@@ -6,7 +6,7 @@ package Tool;
 # Some shared sub routines
 #
 # Author:        Patrick Canterino <patrick@patshaping.de>
-# Last modified: 2005-02-12
+# Last modified: 2005-02-13
 #
 
 use strict;
@@ -223,7 +223,7 @@ sub file_name($)
  my $path =  shift;
  $path    =~ tr!\\!/!;
 
- unless($path =~ m!^/+$! || ($^O eq 'MSWin32' && $path =~ m!^[a-z]:/+$!))
+ unless($path =~ m!^/+$! || ($^O eq 'MSWin32' && $path =~ m!^[a-z]:/+$!i))
  {
   $path =~ s!/+$!!;
   $path =  substr($path,rindex($path,'/')+1);
@@ -284,7 +284,7 @@ sub upper_path($)
  my $path =  shift;
  $path    =~ tr!\\!/!;
 
- unless($path =~ m!^/+$! || ($^O eq 'MSWin32' && $path =~ m!^[a-z]:/+$!))
+ unless($path =~ m!^/+$! || ($^O eq 'MSWin32' && $path =~ m!^[a-z]:/+$!i))
  {
   $path =~ s!/+$!!;
   $path =  substr($path,0,rindex($path,'/')+1);

patrick-canterino.de