]> git.lyx.org Git - features.git/commitdiff
* lib/configure.py:
authorJürgen Spitzmüller <spitz@lyx.org>
Sat, 27 May 2006 07:48:56 +0000 (07:48 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Sat, 27 May 2006 07:48:56 +0000 (07:48 +0000)
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

lib/configure.py

index e37b336b5f9deea2525c056d2236d271dd472155..707920e17ca439328ea399f07f49825882d4c290 100644 (file)
@@ -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'])