diff options
author | asami <asami@FreeBSD.org> | 1995-06-24 19:42:32 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-06-24 19:42:32 +0800 |
commit | d21b71cc5a3e11bccc9aa5fe5763254cd565d9a5 (patch) | |
tree | 560e7eb8a07c987120c853aef90742f320b09b93 /graphics/xpm/Makefile | |
parent | 8d54bac5baa3871cb4702456e31c93aedc116bd5 (diff) | |
download | freebsd-ports-gnome-d21b71cc5a3e11bccc9aa5fe5763254cd565d9a5.tar.gz freebsd-ports-gnome-d21b71cc5a3e11bccc9aa5fe5763254cd565d9a5.tar.zst freebsd-ports-gnome-d21b71cc5a3e11bccc9aa5fe5763254cd565d9a5.zip |
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 'graphics/xpm/Makefile')
-rw-r--r-- | graphics/xpm/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/graphics/xpm/Makefile b/graphics/xpm/Makefile index 7719e25714b5..624c0de7bf86 100644 --- a/graphics/xpm/Makefile +++ b/graphics/xpm/Makefile @@ -3,7 +3,7 @@ # Date created: 14 September 1994 # Whom: jkh # -# $Id: Makefile,v 1.5 1995/04/01 12:46:12 jkh Exp $ +# $Id: Makefile,v 1.6 1995/04/09 07:09:52 asami Exp $ # DISTNAME= xpm-3.4e @@ -13,4 +13,7 @@ MASTER_SITES= ftp://avahi.inria.fr/pub/xpm/ USE_IMAKE= yes XMKMF= xmkmf +post-install: + ldconfig -m ${PREFIX}/lib + .include <bsd.port.mk> |