From 795a85c10d898120a2a6341c4df32fb60b069a64 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 18 Jun 2008 21:18:40 +0000 Subject: [PATCH] fix regression caused by use of IPC::Run to run pslatex: send STDOUT and STDERR from pslatex to /dev/null, we don't want them --- FS/FS/Misc.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/FS/FS/Misc.pm b/FS/FS/Misc.pm index 936f94a6e..bf286c077 100644 --- a/FS/FS/Misc.pm +++ b/FS/FS/Misc.pm @@ -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"; } -- 2.11.0