From: stevenknight Date: Wed, 17 Sep 2008 13:19:31 +0000 (+0000) Subject: Make the test/TEX/LATEX*py scripts work even on systems that don't have X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c07fa65a127556552b00d65de1789fea8451d522;p=scons.git Make the test/TEX/LATEX*py scripts work even on systems that don't have all the right tools installed. git-svn-id: http://scons.tigris.org/svn/scons/trunk@3434 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/engine/SCons/Tool/latex.py b/src/engine/SCons/Tool/latex.py index 69b544a9..aaac6a7f 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)