]> git.lyx.org Git - features.git/commitdiff
configure.py: remove 2 unnecessary entries
authorUwe Stöhr <uwestoehr@lyx.org>
Sun, 31 May 2015 01:06:19 +0000 (03:06 +0200)
committerUwe Stöhr <uwestoehr@lyx.org>
Sun, 31 May 2015 01:06:19 +0000 (03:06 +0200)
they are double, one entry is sufficient

lib/configure.py

index 6e3d37b367e719c69acb9b866c948dc352db14d6..9a817c8ea0600139f1cfdbdeacdef8c3bac57662 100644 (file)
@@ -779,10 +779,10 @@ def checkConverterEntries():
 
     # eLyXer: search as an executable (elyxer.py, elyxer)
     path, elyxer = checkProg('a LyX -> HTML converter',
-        ['elyxer.py --directory $$r $$i $$o', 'elyxer --nofooter --directory $$r $$i $$o'],
+        ['elyxer.py --nofooter --directory $$r $$i $$o'],
         rc_entry = [ r'\converter lyx      html       "%%"     ""' ])
     path, elyxer = checkProg('a LyX -> HTML (MS Word) converter',
-        ['elyxer.py --html --directory $$r $$i $$o', 'elyxer --nofooter --html --directory $$r $$i $$o'],
+        ['elyxer.py --nofooter --html --directory $$r $$i $$o'],
         rc_entry = [ r'\converter lyx      wordhtml       "%%" ""' ])
     if elyxer.find('elyxer') >= 0:
       addToRC(r'''\copier    html       "python -tt $$s/scripts/ext_copy.py -e html,png,jpg,jpeg,css $$i $$o"''')