diff options
author | Robert Managan <ramanagan@att.net> | 2012-10-13 18:16:29 (GMT) |
---|---|---|
committer | Robert Managan <ramanagan@att.net> | 2012-10-13 18:16:29 (GMT) |
commit | 1c207c1d7c9b7b339f5dd2ad772c7c22e600e61b (patch) | |
tree | 363537e4a7b4ebc502c41ed9b5a878df94512a0c /test/TEX/biblatex.py | |
parent | 101c5aa6e19f7498e0723515d3274e4be6bed20a (diff) | |
download | SCons-1c207c1d7c9b7b339f5dd2ad772c7c22e600e61b.zip SCons-1c207c1d7c9b7b339f5dd2ad772c7c22e600e61b.tar.gz SCons-1c207c1d7c9b7b339f5dd2ad772c7c22e600e61b.tar.bz2 |
Fix test for presence of biber and in several tests make variable names consistent with what we are testing the presence of
Diffstat (limited to 'test/TEX/biblatex.py')
-rwxr-xr-x | test/TEX/biblatex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TEX/biblatex.py b/test/TEX/biblatex.py index a70e103..a6fbd48 100755 --- a/test/TEX/biblatex.py +++ b/test/TEX/biblatex.py @@ -39,8 +39,8 @@ latex = test.where_is('pdflatex') if not latex: test.skip_test("Could not find 'pdflatex'; skipping test.\n") -gloss = os.system('kpsewhich biblatex.sty') -if not gloss==0: +biblatex = os.system('kpsewhich biblatex.sty') +if not biblatex==0: test.skip_test("biblatex.sty not installed; skipping test(s).\n") |