From 812cbc4bc43b117268a25c88071eccf0a7c003ce Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 30 Jun 2015 23:22:46 -0400 Subject: [PATCH] Fix user-provided BLAS/LAPACK dir in Cantera.mak Fixes an error introduced in 5720d7cf908. --- platform/posix/Cantera.mak.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/posix/Cantera.mak.in b/platform/posix/Cantera.mak.in index 0e9dfcc39..320d201e9 100644 --- a/platform/posix/Cantera.mak.in +++ b/platform/posix/Cantera.mak.in @@ -64,7 +64,7 @@ CANTERA_SUNDIALS_LIBS=@mak_sundials_libdir@ @mak_sundials_libs@ # BLAS LAPACK LINKAGE ############################################################################### -CANTERA_BLAS_LAPACK_LIBS=@blas_lapack_dir@ @mak_blas_lapack_libs@ +CANTERA_BLAS_LAPACK_LIBS=-L@blas_lapack_dir@ @mak_blas_lapack_libs@ ############################################################################### # COMBINATIONS OF INCLUDES AND LIBS