summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Tool/tex.py
diff options
context:
space:
mode:
authorRobert Managan <managan1@llnl.gov>2010-01-07 17:04:14 (GMT)
committerRobert Managan <managan1@llnl.gov>2010-01-07 17:04:14 (GMT)
commitdac3c4c3066a9b90489269b31c857b1736c8887b (patch)
tree1cb76f3caec5f01875dbe1e9451b26fc8e4d6e48 /src/engine/SCons/Tool/tex.py
parent425d8d6da99d9b701d6fe2fb7dae01ada7d57a35 (diff)
downloadSCons-dac3c4c3066a9b90489269b31c857b1736c8887b.zip
SCons-dac3c4c3066a9b90489269b31c857b1736c8887b.tar.gz
SCons-dac3c4c3066a9b90489269b31c857b1736c8887b.tar.bz2
I got the order of the arguments wrong in a Clean() call I added to help fix teh
auxiliary file problem.
Diffstat (limited to 'src/engine/SCons/Tool/tex.py')
-rw-r--r--src/engine/SCons/Tool/tex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Tool/tex.py b/src/engine/SCons/Tool/tex.py
index b1ba745..11e06bf 100644
--- a/src/engine/SCons/Tool/tex.py
+++ b/src/engine/SCons/Tool/tex.py
@@ -677,7 +677,7 @@ def tex_emitter_core(target, source, env, graphics_extensions):
env.SideEffect(aFile_base + '.aux',target[0])
if Verbose:
print "side effect :",aFile_base + '.aux'
- env.Clean(aFile_base + '.aux',target[0])
+ env.Clean(target[0],aFile_base + '.aux')
# read fls file to get all other files that latex creates and will read on the next pass
# remove files from list that we explicitly dealt with above
if os.path.exists(flsfilename):