File::Spec::VMS fixup for tmpdir from Craig Berry.
Jarkko Hietaniemi [Mon, 24 Jul 2000 17:52:56 +0000 (17:52 +0000)]
p4raw-id: //depot/perl@6433

lib/File/Spec/VMS.pm

index c19695d..60b0ec8 100644 (file)
@@ -265,7 +265,7 @@ sub rootdir {
 Returns a string representation of the first writable directory
 from the following list or '' if none are writable:
 
-    sys$scratch
+    sys$scratch:
     $ENV{TMPDIR}
 
 =cut
@@ -273,7 +273,7 @@ from the following list or '' if none are writable:
 my $tmpdir;
 sub tmpdir {
     return $tmpdir if defined $tmpdir;
-    foreach ('sys$scratch', $ENV{TMPDIR}) {
+    foreach ('sys$scratch:', $ENV{TMPDIR}) {
        next unless defined && -d && -w _;
        $tmpdir = $_;
        last;