From bd2bc32689c6a92b5155c7fe4608ea21c67dff80 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Fri, 3 Feb 2012 19:28:56 +0000 Subject: [PATCH] Fixed a bug in SConstruct with using system BLAS and LAPACK --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index c6fff8be1..a7dbea6ee 100644 --- a/SConstruct +++ b/SConstruct @@ -681,7 +681,8 @@ if env['blas_lapack_libs'] == '': env['BUILD_BLAS_LAPACK'] = True env['blas_lapack_libs'] = ['ctlapack', 'ctblas'] else: - ens['blas_lapack_libs'] = ','.split(env['blas_lapack_libs']) + env['blas_lapack_libs'] = env['blas_lapack_libs'].split(',') + env['BUILD_BLAS_LAPACK'] = False # Directories where things will be after actually being installed # These variables are the ones that are used to populate header files,