svn commit: r411395 - in head/mail: cyrus-imapd23 cyrus-imapd24 cyrus-imapd25
Mathieu Arnold
mat at FreeBSD.org
Sat Mar 19 13:35:04 UTC 2016
Author: mat
Date: Sat Mar 19 13:35:02 2016
New Revision: 411395
URL: https://svnweb.freebsd.org/changeset/ports/411395
Log:
Fix build on 9.
Pointy hat on: ume
Sponsored by: Absolight
Modified:
head/mail/cyrus-imapd23/Makefile
head/mail/cyrus-imapd24/Makefile
head/mail/cyrus-imapd25/Makefile
Modified: head/mail/cyrus-imapd23/Makefile
==============================================================================
--- head/mail/cyrus-imapd23/Makefile Sat Mar 19 13:24:32 2016 (r411394)
+++ head/mail/cyrus-imapd23/Makefile Sat Mar 19 13:35:02 2016 (r411395)
@@ -193,12 +193,10 @@ post-install-DOCS-on:
# There are already files in EXAMPLESDIR at that point, so no
# need to create it.
post-install-EXAMPLES-on:
-.for f in ${CONFS}
-.if ${f} != normal.conf
+.for f in ${CONFS:Nnormal.conf}
@${INSTALL_DATA} ${WRKSRC}/master/conf/${f} \
${STAGEDIR}${EXAMPLESDIR}
@${ECHO_CMD} ${EXAMPLESDIR:S,^${PREFIX}/,,}/${f} >>${TMPPLIST}
-.endif
.endfor
.include <bsd.port.mk>
Modified: head/mail/cyrus-imapd24/Makefile
==============================================================================
--- head/mail/cyrus-imapd24/Makefile Sat Mar 19 13:24:32 2016 (r411394)
+++ head/mail/cyrus-imapd24/Makefile Sat Mar 19 13:35:02 2016 (r411395)
@@ -207,12 +207,10 @@ post-install-DOCS-on:
# there are already files in EXAMPLESDIR at that point, so no
# need to create it.
post-install-EXAMPLES-on:
-.for f in ${CONFS}
-.if ${f} != normal.conf
+.for f in ${CONFS:Nnormal.conf}
@${INSTALL_DATA} ${WRKSRC}/master/conf/${f} \
${STAGEDIR}${EXAMPLESDIR}
@${ECHO_CMD} ${EXAMPLESDIR:S,^${PREFIX}/,,}/${f} >>${TMPPLIST}
-.endif
.endfor
.include <bsd.port.mk>
Modified: head/mail/cyrus-imapd25/Makefile
==============================================================================
--- head/mail/cyrus-imapd25/Makefile Sat Mar 19 13:24:32 2016 (r411394)
+++ head/mail/cyrus-imapd25/Makefile Sat Mar 19 13:35:02 2016 (r411395)
@@ -234,12 +234,10 @@ post-install-DOCS-on:
# there are already files in EXAMPLESDIR at that point, so no
# need to create it.
post-install-EXAMPLES-on:
-.for f in ${CONFS}
-.if ${f} != normal.conf
+.for f in ${CONFS:Nnormal.conf}
@${INSTALL_DATA} ${WRKSRC}/master/conf/${f} \
${STAGEDIR}${EXAMPLESDIR}
@${ECHO_CMD} ${EXAMPLESDIR:S,^${PREFIX}/,,}/${f} >>${TMPPLIST}
-.endif
.endfor
.include <bsd.port.mk>
More information about the svn-ports-head
mailing list