diff options
author | jmz <jmz@FreeBSD.org> | 2006-02-09 03:50:29 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2006-02-09 03:50:29 +0800 |
commit | 52345533e29b20b2ef8a496e9b3916936d23b330 (patch) | |
tree | 1f06e6efec71aea8dc68a729356e0594060a13b0 /math | |
parent | 71f6cd9131b4bf991394cf0a0abcad2317d7a0e2 (diff) | |
download | freebsd-ports-gnome-52345533e29b20b2ef8a496e9b3916936d23b330.tar.gz freebsd-ports-gnome-52345533e29b20b2ef8a496e9b3916936d23b330.tar.zst freebsd-ports-gnome-52345533e29b20b2ef8a496e9b3916936d23b330.zip |
Dont compile blas as it is not installed.
Diffstat (limited to 'math')
-rw-r--r-- | math/lapack/files/patch-ac | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/math/lapack/files/patch-ac b/math/lapack/files/patch-ac index 208b5540f80b..74c3ed73d33e 100644 --- a/math/lapack/files/patch-ac +++ b/math/lapack/files/patch-ac @@ -1,11 +1,12 @@ ---- Makefile.orig Wed May 17 18:33:22 2000 -+++ Makefile Fri Jun 2 17:38:38 2000 +--- Makefile.orig Wed May 17 19:33:22 2000 ++++ Makefile Wed Feb 8 19:59:57 2006 @@ -6,10 +6,17 @@ include make.inc +-all: install lib testing blas_testing timing blas_timing +.if defined(ENABLE_TESTING) && ${ENABLE_TESTING} == "YES" - all: install lib testing blas_testing timing blas_timing ++all: install lib testing timing +.else +all: install lib +.endif @@ -15,7 +16,7 @@ +.if defined(ENABLE_TESTING) && ${ENABLE_TESTING} == "YES" +lib: blaslib lapacklib tmglib fpmclr_.o +.else -+lib: lapacklib blaslib ++lib: lapacklib +.endif clean: cleanlib cleantesting cleantiming |