From 08aeaa6464771231f4cbe8e53ce75918f2a5222a Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Wed, 17 Sep 2008 13:19:31 +0000 Subject: Make the test/TEX/LATEX*py scripts work even on systems that don't have all the right tools installed. --- src/engine/SCons/Tool/latex.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/engine/SCons/Tool/latex.py b/src/engine/SCons/Tool/latex.py index 69b544a..aaac6a7 100644 --- a/src/engine/SCons/Tool/latex.py +++ b/src/engine/SCons/Tool/latex.py @@ -58,6 +58,9 @@ def generate(env): import dvi dvi.generate(env) + import pdf + pdf.generate(env) + bld = env['BUILDERS']['DVI'] bld.add_action('.ltx', LaTeXAuxAction) bld.add_action('.latex', LaTeXAuxAction) -- cgit v0.12