Fixed a bug in SConstruct with using system BLAS and LAPACK

This commit is contained in:
Ray Speth 2012-02-03 19:28:56 +00:00
parent 1618de5a24
commit bd2bc32689

View file

@ -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,