]> git.lyx.org Git - lyx.git/blobdiff - development/autotests/filterXml4Sax.pl
Cmake tests: Do not remove temporary data while debugging
[lyx.git] / development / autotests / filterXml4Sax.pl
index 981def9a1ebed77bbbc390fd9b9a09c0db67fb52..100039d199bbb1d4aac4dcdb846cd979b8689bdb 100644 (file)
@@ -10,7 +10,7 @@ die("No xml file specified") if (! defined($ARGV[0]));
 my $f = $ARGV[0];
 die("Bad extension of $f") if ($f !~ /\.xml$/);
 die("Could not read $f") if (!open(FI, $f));
-my ($fh, $filename) = tempfile("tempXXXX", SUFFIX => '.xml', DIR => '/tmp', UNLINK => 0);
+my ($fh, $filename) = tempfile("tempXXXX", SUFFIX => '.xml', UNLINK => 0);
 while (my $l = <FI>) {
   chomp($l);
   $l = convert($l);