From 2144738ea16ce4864cc2d1e96aec3afd0deb9ad5 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 21 Jan 2014 17:22:14 +0000 Subject: [PATCH] [SCons] Fix minor typo in warning message --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index cb9e2018f..eebafbea0 100644 --- a/SConstruct +++ b/SConstruct @@ -851,7 +851,7 @@ if env['HAS_SUNDIALS'] and env['use_sundials'] != 'n': #In the case where a user is trying to link Cantera to an exteral BLAS/LAPACK #library, but Sundials was configured without this support, print a Warning. if not env['has_sundials_lapack'] and not env['BUILD_BLAS_LAPACK']: - print ('WARNING: External BLAS/LAPACK has been specified for Cantera' + print ('WARNING: External BLAS/LAPACK has been specified for Cantera ' 'but Sundials was built without this support.') env = conf.Finish()