]> git.lyx.org Git - features.git/commitdiff
Minor fix for previous configure.py patch from Julien Rioux.
authorRichard Heck <rgheck@comcast.net>
Fri, 4 Dec 2009 16:08:39 +0000 (16:08 +0000)
committerRichard Heck <rgheck@comcast.net>
Fri, 4 Dec 2009 16:08:39 +0000 (16:08 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32338 a592a061-630c-0410-9148-cb99ea01b6c8

lib/configure.py

index 1682cd0905e738539d4bcad24203ac2c3a87a93b..daa4628d626f6a525976d216bfe122338e3ce6e9 100644 (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,))