diff options
author | madpilot <madpilot@FreeBSD.org> | 2014-05-06 00:40:54 +0800 |
---|---|---|
committer | madpilot <madpilot@FreeBSD.org> | 2014-05-06 00:40:54 +0800 |
commit | 96906c2bb3092d58f9f0c27fe34667de9ed57d19 (patch) | |
tree | e33c21d3ecaa7956e9ca93cd72953872af76d285 /mail/maildrop | |
parent | 9893cf1826c9ee0d8fabc55b42e962fac1049f9e (diff) | |
download | freebsd-ports-gnome-96906c2bb3092d58f9f0c27fe34667de9ed57d19.tar.gz freebsd-ports-gnome-96906c2bb3092d58f9f0c27fe34667de9ed57d19.tar.zst freebsd-ports-gnome-96906c2bb3092d58f9f0c27fe34667de9ed57d19.zip |
Fix build with latest clang when option AUTHLIB is turned on (default off)
PR: ports/189364
Submitted by: Andre Lehmann <blacktux82@gmail.com>
MFH: 2014Q2
Diffstat (limited to 'mail/maildrop')
-rw-r--r-- | mail/maildrop/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/maildrop/Makefile b/mail/maildrop/Makefile index 1d7f3c6bcab8..1288825ee0eb 100644 --- a/mail/maildrop/Makefile +++ b/mail/maildrop/Makefile @@ -114,7 +114,7 @@ post-patch: -e "s/\(deliverquota.html\)/maildrop-\1/" ${WRKSRC}/${f} .endfor .if ${PORT_OPTIONS:MAUTHLIB} - @${REINPLACE_CMD} -e 's|@LIBS@|@LIBS@ -rpath=:${LOCALBASE}/lib/courier-authlib|' \ + @${REINPLACE_CMD} -e 's|@LIBS@|@LIBS@ -L${LOCALBASE}/lib/courier-authlib|' \ ${WRKSRC}/libs/maildrop/Makefile.in .if exists(${.CURDIR}/../../security/courier-authlib/Makefile.dep) .include "${.CURDIR}/../../security/courier-authlib/Makefile.dep" |