summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Defaults.py
diff options
context:
space:
mode:
authorRobert Managan <managan1@llnl.gov>2009-08-06 19:01:36 (GMT)
committerRobert Managan <managan1@llnl.gov>2009-08-06 19:01:36 (GMT)
commitcf18e652192998735ab1c35a1c2a160e8af915cd (patch)
tree12fc085f2d264f77c49a1ce39abe21e9dd3daead /src/engine/SCons/Defaults.py
parente2d1000960a2497c375f30c91f56322661237ecb (diff)
downloadSCons-cf18e652192998735ab1c35a1c2a160e8af915cd.zip
SCons-cf18e652192998735ab1c35a1c2a160e8af915cd.tar.gz
SCons-cf18e652192998735ab1c35a1c2a160e8af915cd.tar.bz2
Move the definition of env['LATEXSUFFIXES'] from Defaults.py to the
various *tex.py generate functions. This is to avoid adding LATEXSUFFIXES to the environment when the tools are not loaded.
Diffstat (limited to 'src/engine/SCons/Defaults.py')
-rw-r--r--src/engine/SCons/Defaults.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Defaults.py b/src/engine/SCons/Defaults.py
index eba86e4..7ce981d 100644
--- a/src/engine/SCons/Defaults.py
+++ b/src/engine/SCons/Defaults.py
@@ -463,7 +463,7 @@ ConstructionEnvironment = {
'DSUFFIXES' : SCons.Tool.DSuffixes,
'ENV' : {},
'IDLSUFFIXES' : SCons.Tool.IDLSuffixes,
- 'LATEXSUFFIXES' : SCons.Tool.LaTeXSuffixes,
+# 'LATEXSUFFIXES' : SCons.Tool.LaTeXSuffixes, # moved to the TeX tools generate functions
'_concat' : _concat,
'_defines' : _defines,
'_stripixes' : _stripixes,