diff options
author | danw <danw@pkgsrc.org> | 2004-09-08 02:42:23 +0000 |
---|---|---|
committer | danw <danw@pkgsrc.org> | 2004-09-08 02:42:23 +0000 |
commit | bb0c160129867b3dc06f9b3e673f14296ce4193a (patch) | |
tree | 1cf680980b9114b4c2d0803a6f1818a54e841995 /mail/imap-uw | |
parent | 46a1aefd21d868470b0f895beb84881713d937c0 (diff) | |
download | pkgsrc-bb0c160129867b3dc06f9b3e673f14296ce4193a.tar.gz |
use hard links rather than symlinks for the libimap -> libc-client
mapping, to fix PR 21652 (darwin build problem)
Diffstat (limited to 'mail/imap-uw')
-rw-r--r-- | mail/imap-uw/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index 7b2e6c918a2..ef149ee39a0 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.79 2004/09/06 19:55:07 tron Exp $ +# $NetBSD: Makefile,v 1.80 2004/09/08 02:42:23 danw Exp $ # ATTENTION: # The Kerberos support in this software is known to be problematic. If you # upgrade this package you *must* test it on a system *without* Kerberos @@ -142,7 +142,7 @@ do-install: ${RANLIB} ${LIB_DIR}/${CCLIENT_PICLIB} cd ${LIB_DIR}; for file in libc-client.*; do \ f=`${ECHO} $${file} | ${SED} "s|libc-client|libimapuw|g"`; \ - ${TEST} -f $${file} && ${LN} -sf $${file} $${f}; \ + ${TEST} -f $${file} && ${LN} -f $${file} $${f}; \ done ${INST_PROG} ${WRKSRC}/imapd/imapd ${PREFIX}/libexec ${INST_PROG} ${WRKSRC}/ipopd/ipop2d ${PREFIX}/libexec |