diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-07-09 08:02:21 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-07-09 08:02:21 +0000 |
commit | 43bc82858807882937465a8293098e3cad363e8d (patch) | |
tree | 884bd18639cab2d022706995e0869380a8c64d15 /x11/XFree86-libs | |
parent | 250c1ca174090a11c3f4e8e029cca972513389d5 (diff) | |
download | pkgsrc-43bc82858807882937465a8293098e3cad363e8d.tar.gz |
Under Linux, we must run ldconfig in post-install target, tested by
Jeremy C. Reed and myself.
Diffstat (limited to 'x11/XFree86-libs')
-rw-r--r-- | x11/XFree86-libs/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/x11/XFree86-libs/Makefile b/x11/XFree86-libs/Makefile index 82be9bdc82d..9df73a05500 100644 --- a/x11/XFree86-libs/Makefile +++ b/x11/XFree86-libs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2004/05/07 15:25:14 cjep Exp $ +# $NetBSD: Makefile,v 1.11 2004/07/09 08:02:21 xtraeme Exp $ DISTNAME= ${DISTFILES} PKGNAME= XFree86-libs-${XF_VER} @@ -42,6 +42,11 @@ SUBST_FILES.mkstrs= config/cf/Library.tmpl SUBST_SED.mkstrs= -e 's,@MAKESTRS@,${X11ROOT}/bin/makestrs,g' SUBST_MESSAGE.mkstrs= "Fixing path of makestrs." +.if ${OPSYS} == "Linux" +post-install: + @${LDCONFIG} ${X11ROOT}/lib +.endif + .include "../../fonts/fontconfig/buildlink3.mk" .include "../../graphics/freetype2/buildlink3.mk" .include "../../textproc/expat/buildlink3.mk" |