summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2008-06-18 21:18:41 +0000
committerivan <ivan>2008-06-18 21:18:41 +0000
commit58b3e4c8fffe032b046e1f8d653fb99d27a0aae6 (patch)
tree85b51a0f015101b13fd203fed91b107b126219d6 /FS
parent2ff5aac65083fa8fe6a573f3704d3c1ae0123e55 (diff)
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
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/Misc.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/FS/FS/Misc.pm b/FS/FS/Misc.pm
index 0e5cd00d1..986002e0c 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";
}