diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-06-24 11:42:32 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-06-24 11:42:32 +0000 |
commit | d530b271d96cde879c3eb6ed8d1f6e86dee25919 (patch) | |
tree | 0f3bfcde4180f0885c812fc77254f8b7feaded8f /devel/libmalloc | |
parent | 9688e7d314996de30b87685f76c328a1a1064cd3 (diff) |
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! :)
Notes
Notes:
svn path=/head/; revision=1871
Diffstat (limited to 'devel/libmalloc')
-rw-r--r-- | devel/libmalloc/Makefile | 5 | ||||
-rw-r--r-- | devel/libmalloc/pkg-plist | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/devel/libmalloc/Makefile b/devel/libmalloc/Makefile index 49cb04c5600f..c9c2679591fd 100644 --- a/devel/libmalloc/Makefile +++ b/devel/libmalloc/Makefile @@ -3,7 +3,7 @@ # Date created: 11 January 1995 # Whom: jkh # -# $Id: Makefile,v 1.2 1995/04/01 12:44:37 jkh Exp $ +# $Id: Makefile,v 1.3 1995/04/09 10:05:12 asami Exp $ # DISTNAME= malloc @@ -11,4 +11,7 @@ PKGNAME= malloc-1.17a CATEGORIES+= development programming libraries MASTER_SITES= ftp.cs.toronto.edu:/pub/moraes/ +post-install: + ldconfig -m ${PREFIX}/lib + .include <bsd.port.mk> diff --git a/devel/libmalloc/pkg-plist b/devel/libmalloc/pkg-plist index 907518ae38f9..ebf07208a6d9 100644 --- a/devel/libmalloc/pkg-plist +++ b/devel/libmalloc/pkg-plist @@ -5,3 +5,4 @@ lib/libmalloc_d.a @exec ranlib %D/%F include/malloc.h lib/libmalloc_d.so.1.13 +@exec ldconfig -m %B |