Minor fix for previous configure.py patch from Julien Rioux.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32338 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-12-04 16:08:39 +00:00
parent 8a14b116e0
commit 7256c934dd

View File

@ -1119,6 +1119,9 @@ def processModuleFile(file, bool_docbook):
# which is \input'ed by chkconfig.ltx
testpackages = list()
for pkg in pkgs.split(","):
if "->" in pkg:
# this is a converter dependency: skip
continue
if pkg.endswith(".sty"):
pkg = pkg[:-4]
testpackages.append("\\TestPackage{%s}" % (pkg,))