diff options
author | Kubilay Kocak <koobs@FreeBSD.org> | 2016-07-14 12:04:41 +0000 |
---|---|---|
committer | Kubilay Kocak <koobs@FreeBSD.org> | 2016-07-14 12:04:41 +0000 |
commit | 1ab7f86f0da462d52e3081e58c283a6bfaaed75b (patch) | |
tree | 2a0ba55aa799000b12e7cb0d3e08fc9511b44b52 | |
parent | 616eafc1e9657a03f557316faf0a7e58f056ddb2 (diff) |
MFH: r418529 mail/postsrsd: Remove USE_LDCONFIG
postsrsd does not install shared libraries but the port uses
USE_LDCONFIG causing the following warning:
ldconfig: warning: /usr/local/lib/postsrsd: No such file or directory
Remove USE_LDCONFIG to compensate
PR: 211097
Reported by: Miroslav Lachman <000.fbsd quip cz>
Approved by: Krzysztof <ports bsdserwis com> (maintainer)
Approved by: portmgr (blanket)
Approved by: portmgr (blanket)
Notes
Notes:
svn path=/branches/2016Q3/; revision=418530
-rw-r--r-- | mail/postsrsd/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mail/postsrsd/Makefile b/mail/postsrsd/Makefile index 8359bbfd6504..153baee3fd4e 100644 --- a/mail/postsrsd/Makefile +++ b/mail/postsrsd/Makefile @@ -3,7 +3,7 @@ PORTNAME= postsrsd PORTVERSION= 1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MAINTAINER= ports@bsdserwis.com @@ -23,7 +23,6 @@ USES= cmake pkgconfig CMAKE_ARGS= --no-warn-unused-cli \ -DCMAKE_INCLUDE_PATH="${LOCALBASE}/include" \ -DCMAKE_LIBRARY_PATH="${LOCALBASE}/lib" -USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} USE_RC_SUBR= ${PORTNAME} PORTDOCS= README.md main.cf.ex README_UPGRADE.md |