diff options
author | Robert Managan <managan1@llnl.gov> | 2009-01-09 01:06:54 (GMT) |
---|---|---|
committer | Robert Managan <managan1@llnl.gov> | 2009-01-09 01:06:54 (GMT) |
commit | e04fb604484cf37da383a38ef9b2bd8c9ef6c175 (patch) | |
tree | 4287cafa5034f1669485101cb9d831fec032680c /test/TEX/multiple_include_subdir.py | |
parent | f597546a9cad8a98434f63cde459b710646d3195 (diff) | |
download | SCons-e04fb604484cf37da383a38ef9b2bd8c9ef6c175.zip SCons-e04fb604484cf37da383a38ef9b2bd8c9ef6c175.tar.gz SCons-e04fb604484cf37da383a38ef9b2bd8c9ef6c175.tar.bz2 |
Remove the feature that would build .pdf graphics files
from .eps files for the pdf latex builder
That is if the .tex file has "\includegraphics{figure1}"
and the file figure1.eps then when using the .DVI builder
latex will find the file and all is fine.
However, when using the .PDF builder pdflatex can not
process .eps files and will fail.
After this patch the user will need to add
env.PDF('figure1.eps')
Update two tests that used the old feature and would fail otherwise
I could not come up with a way to test for a feature
that is removed. That is, I can write a test that works
before the update and fails after but not the other way around.
Diffstat (limited to 'test/TEX/multiple_include_subdir.py')
-rw-r--r-- | test/TEX/multiple_include_subdir.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/TEX/multiple_include_subdir.py b/test/TEX/multiple_include_subdir.py index d78394c..8f61465 100644 --- a/test/TEX/multiple_include_subdir.py +++ b/test/TEX/multiple_include_subdir.py @@ -51,6 +51,7 @@ import os env = Environment(ENV = { 'PATH' : os.environ['PATH'] }) +env.PDF('docs/Fig1.eps') test = env.PDF(source='docs/test.tex') """) |