summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Tool/tex.py
diff options
context:
space:
mode:
authorRobert Managan <managan1@llnl.gov>2008-11-25 18:37:22 (GMT)
committerRobert Managan <managan1@llnl.gov>2008-11-25 18:37:22 (GMT)
commit78398b0527af07a3cfe99980fd816899d72f18ea (patch)
treed940b91d28ff3e9de30ee30d793045f593096edb /src/engine/SCons/Tool/tex.py
parent568b7c766f95c0d03bedd2f85a3c7c6f62f65922 (diff)
downloadSCons-78398b0527af07a3cfe99980fd816899d72f18ea.zip
SCons-78398b0527af07a3cfe99980fd816899d72f18ea.tar.gz
SCons-78398b0527af07a3cfe99980fd816899d72f18ea.tar.bz2
Accidently left a debug print in.
Diffstat (limited to 'src/engine/SCons/Tool/tex.py')
-rw-r--r--src/engine/SCons/Tool/tex.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/engine/SCons/Tool/tex.py b/src/engine/SCons/Tool/tex.py
index 634adef..49da3d0 100644
--- a/src/engine/SCons/Tool/tex.py
+++ b/src/engine/SCons/Tool/tex.py
@@ -447,10 +447,11 @@ def ScanFiles(theFile, target, paths, file_tests, file_tests_search, env, graphi
# so if the extension is included in the name then both searches find it
# we don't want to try to build a .pdf from a .pdf so make sure src!=file wanted
if (graphicSrc != None) and (graphicSrc != graphicNode):
- if Verbose and (graphicNode == None):
- print "need to build '%s' by epstopdf %s -o %s" % (graphFile,graphicSrc,graphFile)
- else:
- print "no need to build '%s', but source file %s exists" % (graphicNode,graphicSrc)
+ if Verbose:
+ if graphicNode == None:
+ print "need to build '%s' by epstopdf %s -o %s" % (graphFile,graphicSrc,graphFile)
+ else:
+ print "no need to build '%s', but source file %s exists" % (graphicNode,graphicSrc)
graphicNode = env.PDF(graphicSrc)
env.Depends(target[0],graphicNode)