diff options
author | Renato Botelho <garga@FreeBSD.org> | 2009-09-03 13:13:39 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2009-09-03 13:13:39 +0000 |
commit | 5dbe6d76b507823ec3964df05ad5270f1e8f95bf (patch) | |
tree | fce97f50f0d8b8d5a1a31d479982701a19b4d3e3 /misc/compat5x | |
parent | 34608257c5daaf01a14516ebf5a4727d5bbf9c57 (diff) | |
download | ports-5dbe6d76b507823ec3964df05ad5270f1e8f95bf.tar.gz ports-5dbe6d76b507823ec3964df05ad5270f1e8f95bf.zip |
Notes
Diffstat (limited to 'misc/compat5x')
-rw-r--r-- | misc/compat5x/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/compat5x/Makefile b/misc/compat5x/Makefile index 335d7f37a363..9c20b0ca6bca 100644 --- a/misc/compat5x/Makefile +++ b/misc/compat5x/Makefile @@ -11,7 +11,7 @@ PORTNAME= compat5x PORTVERSION= 5.4.0.8 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR=lesi/compat5x @@ -69,14 +69,14 @@ do-install: @${MKDIR} ${TARGET_DIR} .if ${OSVERSION} >= 800105 ${RM} -f ${WRKSRC}/libpthread.so.1 - (cd ${TARGET_DIR} && ${LN} -s /usr/lib/libpthr.so ./libpthread.so.1) + (cd ${TARGET_DIR} && ${LN} -sf libthr.so.1 libpthread.so.1) .endif (cd ${WRKSRC} && ${INSTALL_DATA} *.so.* ${TARGET_DIR}) .if ${ARCH} == amd64 @${MKDIR} ${TARGET32_DIR} . if ${OSVERSION} >= 800105 ${RM} -f ${WRKSRC}/lib32/libpthread.so.1 - (cd ${TARGET32_DIR} && ${LN} -s /usr/lib32/libpthr.so ./libpthread.so.1) + (cd ${TARGET32_DIR} && ${LN} -sf libthr.so.1 libpthread.so.1) . endif (cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${TARGET32_DIR}) .endif |