summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2009-09-16 17:44:46 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2009-09-16 17:44:46 (GMT)
commitb5b3f7627bc52cdba2e4245fac3741727613db50 (patch)
treedb2ca56ce5406363ccf08addbcde790819309d1b /src
parent499aa4440df6a3180c2890311ac53cc1e4cfc797 (diff)
downloadSCons-b5b3f7627bc52cdba2e4245fac3741727613db50.zip
SCons-b5b3f7627bc52cdba2e4245fac3741727613db50.tar.gz
SCons-b5b3f7627bc52cdba2e4245fac3741727613db50.tar.bz2
Fix tex code to handle broken nomenclature package. (Fixes test failure on centos5 slave).
Code by Rob Managan.
Diffstat (limited to 'src')
-rw-r--r--src/engine/SCons/Tool/tex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/Tool/tex.py b/src/engine/SCons/Tool/tex.py
index 35022dc..77715f4 100644
--- a/src/engine/SCons/Tool/tex.py
+++ b/src/engine/SCons/Tool/tex.py
@@ -329,7 +329,7 @@ def InternalLaTeXAuxAction(XXXLaTeXAction, target = None, source= None, env=None
result = MakeNclAction(nclfile, nclfile, env)
if result != 0:
print env['MAKENCL']," (nomenclature) returned an error, check the nlg file"
- return result
+ #return result
# Now decide if latex will need to be run again due to glossary.
if check_MD5(suffix_nodes['.glo'],'.glo') or (count == 1 and run_glossaries) or (count == 1 and run_glossary):
@@ -340,7 +340,7 @@ def InternalLaTeXAuxAction(XXXLaTeXAction, target = None, source= None, env=None
result = MakeGlossaryAction(glofile, glofile, env)
if result != 0:
print env['MAKEGLOSSARY']," (glossary) returned an error, check the glg file"
- return result
+ #return result
# Now decide if latex will need to be run again due to acronyms.
if check_MD5(suffix_nodes['.acn'],'.acn') or (count == 1 and run_acronyms):