From: Jürgen Spitzmüller Date: Sat, 27 May 2006 07:48:56 +0000 (+0000) Subject: * lib/configure.py: X-Git-Tag: 1.6.10~13189 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b9d9326080608dd88ddbcbcac04dacdafff0af06;p=lyx.git * lib/configure.py: use $$o flag where appropriate (still some cases pending). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13939 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/configure.py b/lib/configure.py index e37b336b5f..707920e17c 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -330,13 +330,13 @@ def checkConverterEntries(): checkProg('an LaTeX -> OpenOffice.org LaTeX converter', ['oolatex $$i', 'oolatex.sh $$i'], rc_entry = [ r'\converter latex sxw "%%" "latex"' ]) # - checkProg('a PS to PDF converter', ['ps2pdf13 $$i'], + checkProg('a PS to PDF converter', ['ps2pdf13 $$i $$o'], rc_entry = [ r'\converter ps pdf "%%" ""' ]) # checkProg('a DVI to PS converter', ['dvips -o $$o $$i'], rc_entry = [ r'\converter dvi ps "%%" ""' ]) # - checkProg('a DVI to PDF converter', ['dvipdfmx $$i', 'dvipdfm $$i'], + checkProg('a DVI to PDF converter', ['dvipdfmx -o $$o $$i', 'dvipdfm -o $$o $$i'], rc_entry = [ r'\converter dvi pdf3 "%%" ""' ]) # path, dvipng = checkProg('dvipng', ['dvipng'])