diff options
Diffstat (limited to 'test/DVIPS.py')
-rw-r--r-- | test/DVIPS.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/DVIPS.py b/test/DVIPS.py index b3bdebc..9cb6d5f 100644 --- a/test/DVIPS.py +++ b/test/DVIPS.py @@ -74,7 +74,8 @@ sys.exit(0) test.write('SConstruct', """ env = Environment(TEX = r'%s mytex.py', LATEX = r'%s mylatex.py', - DVIPS = r'%s mydvips.py') + DVIPS = r'%s mydvips.py', + tools=['tex', 'latex', 'dvips']) dvi = env.DVI(target = 'test1.dvi', source = 'test1.tex') env.PostScript(target = 'test1.ps', source = dvi) env.PostScript(target = 'test2.ps', source = 'test2.tex') |