diff options
author | garga <garga@FreeBSD.org> | 2009-08-31 19:03:49 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2009-08-31 19:03:49 +0800 |
commit | f13b93a149db707f610d2170024d0704f8f8b62d (patch) | |
tree | 9998d9a5f79d2dc04abdebb7e55f0b3e1bce699b /misc/compat6x | |
parent | f81d47f9fa9baef8179c1755c63cbeddd558e735 (diff) | |
download | freebsd-ports-gnome-f13b93a149db707f610d2170024d0704f8f8b62d.tar.gz freebsd-ports-gnome-f13b93a149db707f610d2170024d0704f8f8b62d.tar.zst freebsd-ports-gnome-f13b93a149db707f610d2170024d0704f8f8b62d.zip |
- Fix libpthread installation broken on last update
- Use ln -sf instead of -s
- Bump PORTREVISION
Reported by: erwin
Diffstat (limited to 'misc/compat6x')
-rw-r--r-- | misc/compat6x/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/compat6x/Makefile b/misc/compat6x/Makefile index 0fa87e50c0d7..9f449e361257 100644 --- a/misc/compat6x/Makefile +++ b/misc/compat6x/Makefile @@ -7,7 +7,7 @@ PORTNAME= compat6x PORTVERSION= 6.4.604000.200810 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_LOCAL} \ http://people.freebsd.org/~${MASTER_SITE_SUBDIR}/ @@ -40,15 +40,15 @@ USE_LDCONFIG32= ${TARGET32_DIR} do-install: @${MKDIR} ${TARGET_DIR} .if ${OSVERSION} >= 800105 - ${RM} -f ${WRKSRC}/libpthread.so.2 - (cd ${TARGET_DIR} && ${LN} -s /usr/lib/libpthr.so ./libpthread.so.2) + ${RM} -f ${WRKSRC}/lib/libpthread.so.2 + (cd ${TARGET_DIR} && ${LN} -sf /usr/lib/libpthr.so ./libpthread.so.2) .endif (cd ${WRKSRC}/lib && ${INSTALL_DATA} *.so.* ${TARGET_DIR}) .if ${ARCH} == amd64 @${MKDIR} ${TARGET32_DIR} . if ${OSVERSION} >= 800105 ${RM} -f ${WRKSRC}/lib32/libpthread.so.2 - (cd ${TARGET32_DIR} && ${LN} -s /usr/lib32/libpthr.so ./libpthread.so.2) + (cd ${TARGET32_DIR} && ${LN} -sf /usr/lib32/libpthr.so ./libpthread.so.2) . endif (cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${TARGET32_DIR}) .endif |