diff options
author | Robert Managan <managan1@llnl.gov> | 2010-01-07 17:04:14 (GMT) |
---|---|---|
committer | Robert Managan <managan1@llnl.gov> | 2010-01-07 17:04:14 (GMT) |
commit | dac3c4c3066a9b90489269b31c857b1736c8887b (patch) | |
tree | 1cb76f3caec5f01875dbe1e9451b26fc8e4d6e48 /src | |
parent | 425d8d6da99d9b701d6fe2fb7dae01ada7d57a35 (diff) | |
download | SCons-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')
-rw-r--r-- | src/engine/SCons/Tool/tex.py | 2 |
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): |