diff options
author | danilo <danilo@FreeBSD.org> | 2015-05-03 03:25:50 +0800 |
---|---|---|
committer | danilo <danilo@FreeBSD.org> | 2015-05-03 03:25:50 +0800 |
commit | 338d5048bb338243f750933953a7c9b8938013e9 (patch) | |
tree | ea4c464fba6d8a8544250c5e80db7073c9585225 /math | |
parent | 253bf496d19841b38823f07007e00e1d9a307a89 (diff) | |
download | freebsd-ports-gnome-338d5048bb338243f750933953a7c9b8938013e9.tar.gz freebsd-ports-gnome-338d5048bb338243f750933953a7c9b8938013e9.tar.zst freebsd-ports-gnome-338d5048bb338243f750933953a7c9b8938013e9.zip |
- Fix symbolic link path
/usr/local/lib/libsuperlu.a
/usr/local/lib/libsuperlu.so -> libsuperlu_4.3.so
/usr/local/lib/libsuperlu.so.4
/usr/local/lib/libsuperlu_4.3.so -> libsuperlu.so.2 <-- wrong file name
Diffstat (limited to 'math')
-rw-r--r-- | math/superlu/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/superlu/Makefile b/math/superlu/Makefile index 67c10f9a9ccc..65830ea4fdbd 100644 --- a/math/superlu/Makefile +++ b/math/superlu/Makefile @@ -3,7 +3,7 @@ PORTNAME= superlu PORTVERSION= ${P_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= http://crd.lbl.gov/~xiaoye/SuperLU/ \ http://crd.lbl.gov/~xiaoye/:doc @@ -76,7 +76,7 @@ do-install: ${STAGEDIR}${PREFIX}/lib/libsuperlu.a ${INSTALL_LIB} ${WRKSRC}/libsuperlu_${P_VERSION}.so \ ${STAGEDIR}${PREFIX}/lib/libsuperlu.so.${P_VER} - ${LN} -fs libsuperlu.so.${PORTREVISION} \ + ${LN} -fs libsuperlu.so.${P_VER} \ ${STAGEDIR}${PREFIX}/lib/libsuperlu_${P_VERSION}.so ${LN} -fs libsuperlu_${P_VERSION}.so \ ${STAGEDIR}${PREFIX}/lib/libsuperlu.so |