Skip to content
Snippets Groups Projects
Commit 610e9c7e authored by Peter W. Draper's avatar Peter W. Draper
Browse files

Remove trailing comma

Moral don't tidyup just before pushing
parent 795621d2
No related branches found
No related tags found
1 merge request!515Check for GSL in non-standard places with the --with-gsl option
......@@ -428,12 +428,12 @@ if test "x$with_gsl" != "xno"; then
fi
# GSL is not specified, so just check if we have it.
if test "x$with_gsl" = "xtest"; then
AC_CHECK_LIB([gslcblas],[cblas_dgemm], [have_gsl="yes"], [have_gsl="no"], $GSL_LIBS)
AC_CHECK_LIB([gslcblas],[cblas_dgemm],[have_gsl="yes"],[have_gsl="no"],$GSL_LIBS)
if test "x$have_gsl" != "xno"; then
AC_DEFINE([HAVE_LIBGSLCBLAS],1,[The GSL CBLAS library appears to be present.]),
AC_DEFINE([HAVE_LIBGSLCBLAS],1,[The GSL CBLAS library appears to be present.])
AC_CHECK_LIB([gsl],[gsl_integration_qag],
AC_DEFINE([HAVE_LIBGSL],1,[The GSL library appears to be present.]),
[have_gsl="no"], $GSL_LIBS)
[have_gsl="no"],$GSL_LIBS)
fi
else
AC_CHECK_LIB([gslcblas],[cblas_dgemm],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment