Skip to content

Commit

Permalink
Allow spaces in the --with-lapack configure option argument
Browse files Browse the repository at this point in the history
  • Loading branch information
smaret committed Feb 28, 2011
1 parent 7223279 commit 518f920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ AC_CHECK_LIB(sundials_nvecserial, main)
if test $ac_cv_lib_sundials_cvode_main = "no"; then
AC_MSG_ERROR(could not find SUNDIALS library.)
fi
if test x$with_lapack != "x" -a x$with_lapack != "xno"; then
if test "x$with_lapack" != "x" -a "x$with_lapack" != "xno"; then
AX_LAPACK(,AC_MSG_WARN(could not find BLAS and/or LAPACK libraries.))
LIBS="$LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS"
fi
Expand Down

0 comments on commit 518f920

Please sign in to comment.