From dac3c4c3066a9b90489269b31c857b1736c8887b Mon Sep 17 00:00:00 2001 From: Robert Managan Date: Thu, 7 Jan 2010 17:04:14 +0000 Subject: I got the order of the arguments wrong in a Clean() call I added to help fix teh auxiliary file problem. --- src/engine/SCons/Tool/tex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v0.12