diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-09-28 09:59:02 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-09-28 09:59:02 +0000 |
commit | e206bd4ef455842796aac8155237f2728910a69e (patch) | |
tree | d90866a0a55ef78b215eb961e729cbcb2b99bf0a /japanese/tk42 | |
parent | List ELF shlib names when a.out shlib names end with ".0". (diff) |
Create libtk42jp.so link in a.out case.
Notes
Notes:
svn path=/head/; revision=13517
Diffstat (limited to 'japanese/tk42')
-rw-r--r-- | japanese/tk42/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/japanese/tk42/Makefile b/japanese/tk42/Makefile index 36966ba4e688..a26c2c567b05 100644 --- a/japanese/tk42/Makefile +++ b/japanese/tk42/Makefile @@ -3,7 +3,7 @@ # Date created: # Whom: taguchi@tohoku.iij.ad.jp # -# $Id: Makefile,v 1.5 1998/08/07 23:55:45 asami Exp $ +# $Id: Makefile,v 1.6 1998/09/27 08:24:35 kuriyama Exp $ # DISTNAME= tk4.2p2 @@ -50,6 +50,9 @@ pre-install: post-install: cd ${WRKSRC} && ${MAKE} -f Makefile.lib PREFIX=${PREFIX} VERSION=${VERSION} install ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib + if [ "${PORTOBJFORMAT}" = "aout" ]; then \ + ${LN} -sf libtk42jp.so.1.0 ${PREFIX}/lib/libtk42jp.so; \ + fi @echo "**********" @echo "IMPORTANT:" @echo "**********" |