diff options
author | tron <tron@pkgsrc.org> | 2002-12-04 07:59:36 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-12-04 07:59:36 +0000 |
commit | b4d25dbfef5113c82122722e6204c3491306636d (patch) | |
tree | be66db80903a5554ea8b35bac8a108a600001237 /textproc/jade | |
parent | 6d4b4db105b5be360ea6afc4752500a58f25653c (diff) | |
download | pkgsrc-b4d25dbfef5113c82122722e6204c3491306636d.tar.gz |
Add work arround for problem in buildlink2 framework which makes libtool's
attempt to relink the shared libraries fail.
Diffstat (limited to 'textproc/jade')
-rw-r--r-- | textproc/jade/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/textproc/jade/Makefile b/textproc/jade/Makefile index 2698c8756ad..0508354db4b 100644 --- a/textproc/jade/Makefile +++ b/textproc/jade/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2002/08/25 18:40:03 jlam Exp $ +# $NetBSD: Makefile,v 1.22 2002/12/04 07:59:36 tron Exp $ DISTNAME= jade-1.2.1 PKGREVISION= 4 @@ -49,6 +49,10 @@ post-install: # Installed by print/tex-jadetex ${RM} ${PREFIX}/share/sgml/jade/*jadetex.* +post-build: + cd ${BUILDLINK_DIR}/lib; \ + ${FIND} ${WRKSRC} -name "lib*.so" | ${XARGS} -n 1 ${LN} -fs + .include "../../devel/gettext-lib/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |