fix regression caused by use of IPC::Run to run pslatex: send STDOUT and STDERR from...
authorivan <ivan>
Wed, 18 Jun 2008 21:18:40 +0000 (21:18 +0000)
committerivan <ivan>
Wed, 18 Jun 2008 21:18:40 +0000 (21:18 +0000)
FS/FS/Misc.pm

index 936f94a..bf286c0 100644 (file)
@@ -745,8 +745,7 @@ sub _pslatex {
   for ( 1, 2 ) {
 
     local($SIG{CHLD}) = sub {};
-    #run( \@cmd, '>'=>'/dev/null', '2>'=>'/dev/null', timeout($timeout) )
-    run( \@cmd, timeout($timeout) )
+    run( \@cmd, '>'=>'/dev/null', '2>'=>'/dev/null', timeout($timeout) )
       or die "pslatex $file.tex failed; see $file.log for details?\n";
 
   }