From 6623957de11536fb97590d68ed1d563703c34d5b Mon Sep 17 00:00:00 2001 From: managan Date: Thu, 7 Jan 2010 17:04:14 +0000 Subject: [PATCH] I got the order of the arguments wrong in a Clean() call I added to help fix teh auxiliary file problem. git-svn-id: http://scons.tigris.org/svn/scons/trunk@4597 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- 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 b1ba745a..11e06bfc 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): -- 2.26.2