diff options
author | bf <bf@FreeBSD.org> | 2011-05-07 15:51:44 +0800 |
---|---|---|
committer | bf <bf@FreeBSD.org> | 2011-05-07 15:51:44 +0800 |
commit | c8fdbf46bbe5efcd742f361043c7afa1756299ba (patch) | |
tree | ab9c7b6ea8ce88d13cd0eacb0dc4d56f089d8989 /math | |
parent | 812ccc1db767c41ee127579b0c02050471246650 (diff) | |
download | freebsd-ports-gnome-c8fdbf46bbe5efcd742f361043c7afa1756299ba.tar.gz freebsd-ports-gnome-c8fdbf46bbe5efcd742f361043c7afa1756299ba.tar.zst freebsd-ports-gnome-c8fdbf46bbe5efcd742f361043c7afa1756299ba.zip |
Fix CONFIGURE_ARGS when using atlas
Reported by: R. Hurling
Diffstat (limited to 'math')
-rw-r--r-- | math/R/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index 156742dccc6d..046177d27a2d 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -93,8 +93,8 @@ CONFIGURE_ENV += SHLIB_${flag}FLAGS="${PICFLAG}" .if !defined(LIBRMATH_SLAVEPORT) .if defined(WITH_ATLAS) LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas -BLAS?= "-lf77blas -latlas" -LAPACK?= "-lalapack -lcblas" +BLAS?= -lf77blas -latlas +LAPACK?= -lalapack -lcblas .else BLAS?= no LAPACK?= no |