mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 04:46:28 -04:00
- Fix libpthread installation broken on last update
- Use ln -sf instead of -s - Bump PORTREVISION Reported by: erwin
This commit is contained in:
parent
c2f87e3deb
commit
6e8033afe0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=240599
1 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= compat6x
|
PORTNAME= compat6x
|
||||||
PORTVERSION= 6.4.604000.200810
|
PORTVERSION= 6.4.604000.200810
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= misc
|
CATEGORIES= misc
|
||||||
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
||||||
http://people.freebsd.org/~${MASTER_SITE_SUBDIR}/
|
http://people.freebsd.org/~${MASTER_SITE_SUBDIR}/
|
||||||
|
@ -40,15 +40,15 @@ USE_LDCONFIG32= ${TARGET32_DIR}
|
||||||
do-install:
|
do-install:
|
||||||
@${MKDIR} ${TARGET_DIR}
|
@${MKDIR} ${TARGET_DIR}
|
||||||
.if ${OSVERSION} >= 800105
|
.if ${OSVERSION} >= 800105
|
||||||
${RM} -f ${WRKSRC}/libpthread.so.2
|
${RM} -f ${WRKSRC}/lib/libpthread.so.2
|
||||||
(cd ${TARGET_DIR} && ${LN} -s /usr/lib/libpthr.so ./libpthread.so.2)
|
(cd ${TARGET_DIR} && ${LN} -sf /usr/lib/libpthr.so ./libpthread.so.2)
|
||||||
.endif
|
.endif
|
||||||
(cd ${WRKSRC}/lib && ${INSTALL_DATA} *.so.* ${TARGET_DIR})
|
(cd ${WRKSRC}/lib && ${INSTALL_DATA} *.so.* ${TARGET_DIR})
|
||||||
.if ${ARCH} == amd64
|
.if ${ARCH} == amd64
|
||||||
@${MKDIR} ${TARGET32_DIR}
|
@${MKDIR} ${TARGET32_DIR}
|
||||||
. if ${OSVERSION} >= 800105
|
. if ${OSVERSION} >= 800105
|
||||||
${RM} -f ${WRKSRC}/lib32/libpthread.so.2
|
${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
|
. endif
|
||||||
(cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${TARGET32_DIR})
|
(cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${TARGET32_DIR})
|
||||||
.endif
|
.endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue