diff options
author | hubertf <hubertf@pkgsrc.org> | 1998-02-02 08:58:13 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1998-02-02 08:58:13 +0000 |
commit | f6fc8a8a9e14e367650817be6027f926692af42a (patch) | |
tree | 6c793edd466777e3ccc6ce4ab38a352948e15200 /lang/kaffe/Makefile | |
parent | 403cfa3d46c5e57f70a52b18a921f538acd81dcd (diff) | |
download | pkgsrc-f6fc8a8a9e14e367650817be6027f926692af42a.tar.gz |
Remove -m argument from ldconfig calls, require the system to
have ${PREFIX}/lib in ld.so.conf instead. This ensures things
even work after a reboot.
Diffstat (limited to 'lang/kaffe/Makefile')
-rw-r--r-- | lang/kaffe/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/kaffe/Makefile b/lang/kaffe/Makefile index 2cdf9bea1bd..95f25e5aa9a 100644 --- a/lang/kaffe/Makefile +++ b/lang/kaffe/Makefile @@ -3,7 +3,7 @@ # Date created: 20 February 1995 # Whom: Tim Wilkinson <tim@sarc.city.ac.uk> # -# $NetBSD: Makefile,v 1.4 1998/02/02 08:11:01 hubertf Exp $ +# $NetBSD: Makefile,v 1.5 1998/02/02 08:59:27 hubertf Exp $ # FreeBSD Id: Makefile,v 1.30 1997/12/08 09:37:16 obrien Exp # @@ -28,6 +28,6 @@ MAN1= kaffe.1 post-install: ${MKDIR} ${PREFIX}/share/kaffe ${INSTALL_DATA} ${WRKSRC}/ENVIRONMENT ${WRKSRC}/license.terms ${PREFIX}/share/kaffe - ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE} + ${LDCONFIG} || ${TRUE} .include <bsd.port.mk> |