diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-09-28 09:44:23 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-09-28 09:44:23 +0000 |
commit | fef857c6e37e0736439fe1130dd93c5c64ff345c (patch) | |
tree | 57b76c6591dc2de24d63af454570f9f1f18b7d83 /math/blas | |
parent | "ln -s" -> "ln -sf" to make this reinstall-friendly. (diff) |
Create libblas.so symlink in a.out case.
Notes
Notes:
svn path=/head/; revision=13513
Diffstat (limited to 'math/blas')
-rw-r--r-- | math/blas/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/math/blas/Makefile b/math/blas/Makefile index a249c67fe18e..81299401a731 100644 --- a/math/blas/Makefile +++ b/math/blas/Makefile @@ -3,7 +3,7 @@ # Date created: 27 October 1994 # Whom: ljo # -# $Id: Makefile,v 1.18 1998/07/09 03:42:14 scrappy Exp $ +# $Id: Makefile,v 1.19 1998/08/09 00:05:49 steve Exp $ # DISTNAME= blas @@ -23,5 +23,8 @@ pre-build: post-install: ${LDCONFIG} -m ${PREFIX}/lib + if [ "${PORTOBJFORMAT}" = "aout" ]; then \ + ${LN} -sf libblas.so.1.0 ${PREFIX}/lib/libblas.so; \ + fi .include <bsd.port.mk> |