Symbian port of Perl
[p5sagit/p5-mst-13.2.git] / lib / File / Spec / Win32.pm
index de560ce..e5d3810 100644 (file)
@@ -44,12 +44,13 @@ from the following list:
     $ENV{TEMP}
     $ENV{TMP}
     SYS:/temp
+    C:\system\temp
     C:/temp
     /tmp
     /
 
-The SYS:/temp is preferred in Novell NetWare (the File::Spec::Win32
-is used also for NetWare).
+The SYS:/temp is preferred in Novell NetWare and the C:\system\temp
+for Symbian (the File::Spec::Win32 is used also for those platforms).
 
 Since Perl 5.8.0, if running under taint mode, and if the environment
 variables are tainted, they are not used.
@@ -62,6 +63,7 @@ sub tmpdir {
     my $self = shift;
     $tmpdir = $self->_tmpdir( @ENV{qw(TMPDIR TEMP TMP)},
                              'SYS:/temp',
+                             'C:\system\temp',
                              'C:/temp',
                              '/tmp',
                              '/'  );