aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaho <maho@FreeBSD.org>2007-01-10 11:38:09 +0800
committermaho <maho@FreeBSD.org>2007-01-10 11:38:09 +0800
commit9ea1ea3a573df287d139bcb304ebd0154cde9947 (patch)
treefe325073d0cef25f3abba8a3a8af178014ac7232
parent5ac52a180c40f53228bcffca113341581608d916 (diff)
downloadfreebsd-ports-gnome-9ea1ea3a573df287d139bcb304ebd0154cde9947.tar.gz
freebsd-ports-gnome-9ea1ea3a573df287d139bcb304ebd0154cde9947.tar.zst
freebsd-ports-gnome-9ea1ea3a573df287d139bcb304ebd0154cde9947.zip
-llapack should be -lalapack when linking against lapack from ATLAS.
-rw-r--r--math/taucs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/taucs/Makefile b/math/taucs/Makefile
index 41b8edec9eff..263f98c1be90 100644
--- a/math/taucs/Makefile
+++ b/math/taucs/Makefile
@@ -22,7 +22,7 @@ WITH_ATLAS= yes
.if defined(WITH_ATLAS)
LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas
BLAS= -lf77blas -latlas
-LAPACK= -llapack
+LAPACK= -lalapack
.else
LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack
LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas