summaryrefslogtreecommitdiff
path: root/engine/SCons/Tool/latex.py
diff options
context:
space:
mode:
Diffstat (limited to 'engine/SCons/Tool/latex.py')
-rw-r--r--engine/SCons/Tool/latex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/SCons/Tool/latex.py b/engine/SCons/Tool/latex.py
index 56db43f..e4f1a51 100644
--- a/engine/SCons/Tool/latex.py
+++ b/engine/SCons/Tool/latex.py
@@ -32,7 +32,7 @@ selection method.
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "src/engine/SCons/Tool/latex.py 4720 2010/03/24 03:14:11 jars"
+__revision__ = "src/engine/SCons/Tool/latex.py 5023 2010/06/14 22:05:46 scons"
import SCons.Action
import SCons.Defaults
@@ -44,7 +44,7 @@ import SCons.Tool.tex
def LaTeXAuxFunction(target = None, source= None, env=None):
result = SCons.Tool.tex.InternalLaTeXAuxAction( SCons.Tool.tex.LaTeXAction, target, source, env )
if result != 0:
- print env['LATEX']," returned an error, check the log file"
+ SCons.Tool.tex.check_file_error_message(env['LATEX'])
return result
LaTeXAuxAction = SCons.Action.Action(LaTeXAuxFunction,