summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2003-11-30 08:06:58 +0000
committerivan <ivan>2003-11-30 08:06:58 +0000
commitf3a224eac55f1b0727f1ac346c80fc48446fbbc4 (patch)
treec069d59e20c70f1eafcc447c606e13dda1f128be
parent728d08302fac48b0a4c0a10ff5cfca7505dea4e4 (diff)
explicitly tell dvips to write output to a file
-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 370514202..797eb4f8d 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -1463,7 +1463,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";