The new DocBook output has no prerequisite on the document, so enable it for each and every document.

This commit is contained in:
Thibaut Cuvelier 2019-05-10 02:13:23 +02:00 committed by Pavel Sanda
parent 3883b85f49
commit b596921211
2 changed files with 2 additions and 1 deletions

View File

@ -1242,7 +1242,6 @@ def checkConverterEntries():
# checkProg('Image converter', ['convert $$i $$o'])
#
# Entries that do not need checkProg
# \converter docbook docbook5 "cp $$i $$o" "xml"
addToRC(r'''
\converter csv lyx "python -tt $$s/scripts/csv2lyx.py $$i $$o" ""
\converter fen asciichess "python -tt $$s/scripts/fen2ascii.py $$i $$o" ""
@ -1262,6 +1261,7 @@ def checkConverterEntries():
\converter klyx lyx "python -tt $$s/lyx2lyx/lyx2lyx -c euc_kr -o $$o $$i" ""
\converter lyxpreview png "python -tt $$s/scripts/lyxpreview2bitmap.py --png" ""
\converter lyxpreview ppm "python -tt $$s/scripts/lyxpreview2bitmap.py --ppm" ""
\converter docbook docbook5 "cp $$i $$o" "xml"
''')

View File

@ -2698,6 +2698,7 @@ vector<string> BufferParams::backends() const
}
v.push_back("xhtml");
v.push_back("docbook5");
v.push_back("text");
v.push_back("lyx");
return v;