Jean-Marc Lasgouttes wrote:
A small detail that would be worth fixing IMO: in the configure.py
output one sees:
+checking for package sweave->latex [sweave->latex]... no
+checking for package literate->latex [literate->latex]... no
This patch seems sufficient to remedy the situation.
Julien
Index: configure.py
===================================================================
--- configure.py (revision 32337)
+++ configure.py (working copy)
@@ -1119,6 +1119,9 @@
# 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,))