From: ivan Date: Sun, 30 Nov 2003 08:06:58 +0000 (+0000) Subject: explicitly tell dvips to write output to a file X-Git-Tag: freeside_1_4_2beta1~352 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=f3a224eac55f1b0727f1ac346c80fc48446fbbc4;p=freeside.git explicitly tell dvips to write output to a file --- 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";