p4genpatch: current directory may not be writable, so don't
Gurusamy Sarathy [Sun, 5 May 2002 07:50:53 +0000 (07:50 +0000)]
create temp files there

p4raw-id: //depot/perl@16413

Porting/p4genpatch

index fd744af..f9a1f4d 100644 (file)
@@ -50,7 +50,7 @@ close $p4;
 my $tempdir;
 print "Differences ...\n";
 for my $a (@action) {
-  $tempdir ||= tempdir( "tmp-XXXX", CLEANUP => 1 );
+  $tempdir ||= tempdir( "tmp-XXXX", CLEANUP => 1, TMPDIR => 1 );
   my($action,$file,$prefix) = @$a;
   my($path,$basename,$number) = $file =~ m|\Q$prefix\E/(.+/)?([^/]+)#(\d+)|;
   die "Panic: Could not parse file[$file]" unless $number;