diff options
author | asami <asami@FreeBSD.org> | 1995-06-24 11:42:32 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-06-24 11:42:32 +0000 |
commit | d21b71cc5a3e11bccc9aa5fe5763254cd565d9a5 (patch) | |
tree | 560e7eb8a07c987120c853aef90742f320b09b93 /math/blas/Makefile | |
parent | 8d54bac5baa3871cb4702456e31c93aedc116bd5 (diff) | |
download | FreeBSD-ports-d21b71cc5a3e11bccc9aa5fe5763254cd565d9a5.zip FreeBSD-ports-d21b71cc5a3e11bccc9aa5fe5763254cd565d9a5.tar.gz |
Add
post-install:
pkg_add -m ${PREFIX}/lib
to Makefiles and
@exec ldconfig -m %D
to packing lists of ports that install shared libraries.
This should get rid of a huge chunk of confusion for novice users!
All hail Paul Kranenburg! :)
Diffstat (limited to 'math/blas/Makefile')
-rw-r--r-- | math/blas/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/math/blas/Makefile b/math/blas/Makefile index 3edd692..bb18ff5 100644 --- a/math/blas/Makefile +++ b/math/blas/Makefile @@ -3,7 +3,7 @@ # Date created: 27 October 1994 # Whom: ljo # -# $Id: Makefile,v 1.6 1995/04/22 11:29:56 asami Exp $ +# $Id: Makefile,v 1.7 1995/05/03 02:22:18 asami Exp $ # DISTNAME= blas @@ -51,5 +51,7 @@ pre-build: pre-extract: chmod +x scripts/uncomp -.include <bsd.port.mk> +post-install: + ldconfig -m ${PREFIX}/lib +.include <bsd.port.mk> |