At some point the #6234 has been lost from the mainline
Jarkko Hietaniemi [Mon, 22 Oct 2001 21:43:44 +0000 (21:43 +0000)]
(noticed by Pudge; what's a Mac guy doing reading Win modules? :-)

p4raw-id: //depot/perl@12596

lib/File/Spec/Win32.pm

index 4b10a7f..519fb86 100644 (file)
@@ -43,6 +43,7 @@ from the following list:
     $ENV{TMPDIR}
     $ENV{TEMP}
     $ENV{TMP}
+    C:/temp
     /tmp
     /
 
@@ -52,7 +53,7 @@ my $tmpdir;
 sub tmpdir {
     return $tmpdir if defined $tmpdir;
     my $self = shift;
-    foreach (@ENV{qw(TMPDIR TEMP TMP)}, qw(/tmp /)) {
+    foreach (@ENV{qw(TMPDIR TEMP TMP)}, qw(C:/temp /tmp /)) {
        next unless defined && -d;
        $tmpdir = $_;
        last;