summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2003-11-30 08:06:56 +0000
committerivan <ivan>2003-11-30 08:06:56 +0000
commit9748a639549536ad0fc29445c8ea500ded22547d (patch)
treed810e97185a7d04ef761541ca2a32861cf149104 /FS
parent7f300c1a420b3a95bb7e99c0161059718fb21932 (diff)
explicitly tell dvips to write output to a file
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_bill.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm
index 64759f9..8687711 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -1071,7 +1071,7 @@ sub print_ps {
system('pslatex', "$file.tex");
system('pslatex', "$file.tex");
#system('dvips', '-t', 'letter', "$file.dvi", "$file.ps");
- system('dvips', '-t', 'letter', "$file.dvi" );
+ system('dvips', '-t', 'letter', "$file.dvi", '-o', "$file.ps" );
open(POSTSCRIPT, "<$file.ps") or die "can't open $file.ps (probable error in LaTeX template): $!\n";