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 /x11-toolkits/iv/Makefile | |
parent | 8d54bac5baa3871cb4702456e31c93aedc116bd5 (diff) | |
download | freebsd-ports-graphics-d21b71cc5a3e11bccc9aa5fe5763254cd565d9a5.tar.gz freebsd-ports-graphics-d21b71cc5a3e11bccc9aa5fe5763254cd565d9a5.tar.zst freebsd-ports-graphics-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 'x11-toolkits/iv/Makefile')
-rw-r--r-- | x11-toolkits/iv/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11-toolkits/iv/Makefile b/x11-toolkits/iv/Makefile index 3dbebc955c4..75e3c9246c6 100644 --- a/x11-toolkits/iv/Makefile +++ b/x11-toolkits/iv/Makefile @@ -3,7 +3,7 @@ # Date created: 23.sept.1994 # Whom: adam # -# $Id: Makefile,v 1.8 1995/05/31 06:01:49 asami Exp $ +# $Id: Makefile,v 1.9 1995/06/04 01:12:38 asami Exp $ # VERSION= 3.1 @@ -34,5 +34,6 @@ post-install: # need these in ${PREFIX}/lib so that ldconfig can find them ln -fs ../interviews/lib/FREEBSD/libIV.so.3.1 ${PREFIX}/lib ln -fs ../interviews/lib/FREEBSD/libUnidraw.so.3.1 ${PREFIX}/lib + ldconfig -m ${PREFIX}/lib .include <bsd.port.mk> |