From 88a1f64466e22af7a5f9ef9fcbb1f6bc382d6967 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 29 May 2012 18:03:18 +0000 Subject: [PATCH] Fixed list of libraries specified when linking the Matlab extension --- src/python/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/SConscript b/src/python/SConscript index 42c952267..02da8d35b 100644 --- a/src/python/SConscript +++ b/src/python/SConscript @@ -32,9 +32,9 @@ if localenv['python_package'] == 'full': cantera_libname = 'cantera_shared' if os.name=='nt' else 'cantera' #pylinklibs = [cantera_libname, 'cvode', 'ctmath', 'ctlapack', 'ctblas', 'ctf2c', 'execstream'] if os.name == 'nt': - pylinklibs = env['cantera_shared_libs'] + pylinklibs = list(env['cantera_shared_libs']) else: - pylinklibs = env['cantera_libs'] + pylinklibs = list(env['cantera_libs']) if localenv['toolchain'] == 'mingw': # On Windows, we need to link against the Python "import" library.