diff options
author | Steven Knight <knight@baldmt.com> | 2002-08-23 02:14:44 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-08-23 02:14:44 (GMT) |
commit | 62446cb66567e967e1af2b6a0c152fdeb98508c8 (patch) | |
tree | 74ac1c6836dbf3b614aef7c1ce2a2c7b5291cee0 /test/DVIPDFFLAGS.py | |
parent | d7079b4271cc358b515378e8b02bdf52637f3ee0 (diff) | |
download | SCons-62446cb66567e967e1af2b6a0c152fdeb98508c8.zip SCons-62446cb66567e967e1af2b6a0c152fdeb98508c8.tar.gz SCons-62446cb66567e967e1af2b6a0c152fdeb98508c8.tar.bz2 |
Implement spawn() using os.system() on Posix OSes. (Anthony Roach)
Diffstat (limited to 'test/DVIPDFFLAGS.py')
-rw-r--r-- | test/DVIPDFFLAGS.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/DVIPDFFLAGS.py b/test/DVIPDFFLAGS.py index e6f9146..9962253 100644 --- a/test/DVIPDFFLAGS.py +++ b/test/DVIPDFFLAGS.py @@ -106,8 +106,9 @@ test.fail_test(test.read('test2.pdf') != " -x\nThis is a .tex test.\n") dvipdf = test.where_is('dvipdf') +tex = test.where_is('tex') -if dvipdf: +if dvipdf and tex: test.write("wrapper.py", """import os import string |