diff options
author | John Marino <marino@FreeBSD.org> | 2016-01-05 16:08:15 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2016-01-05 16:08:15 +0000 |
commit | 120409991ca0a965bdd0d1a5991b410a9219b415 (patch) | |
tree | 80baee4fc85c9018e517dc80150b87d5b34ac4f9 /mail/qmail | |
parent | f83e6722206a84b50b0c13571728eef6b94d0abc (diff) | |
download | ports-120409991ca0a965bdd0d1a5991b410a9219b415.tar.gz ports-120409991ca0a965bdd0d1a5991b410a9219b415.zip |
mail/qmail: Rename Make var from SELECTED_OPTIONS to SEL_OPTIONS
SELECTED_OPTIONS is now a framework informational variable, so there
is a name clash with qmail and its slave ports. Just rename the
variable here to remove the conflict (No-op)
Approved by: Just fix it
Notes
Notes:
svn path=/head/; revision=405298
Diffstat (limited to 'mail/qmail')
-rw-r--r-- | mail/qmail/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/qmail/Makefile b/mail/qmail/Makefile index 184e149886a1..761a7758df32 100644 --- a/mail/qmail/Makefile +++ b/mail/qmail/Makefile @@ -621,13 +621,13 @@ PLIST_SUB+= RCDLINK="@comment " RCDLINK= \# .endif -# Fill SELECTED_OPTIONS with options to write conf-spamcontrol +# Fill SEL_OPTIONS with options to write conf-spamcontrol .if defined(SLAVE_SPAMCONTROL) . if ${PORT_OPTIONS:MPAM111421} -SELECTED_OPTIONS+= pam111421=yes +SEL_OPTIONS+= pam111421=yes . else -SELECTED_OPTIONS+= pam111421=no +SEL_OPTIONS+= pam111421=no . endif .endif @@ -671,7 +671,7 @@ pre-patch: @${ECHO_CMD} ${WRKDIR} > ${WRKSRC}/conf-qmail @${ECHO_CMD} "# Generated by qmail-spamcontrol FreeBSD port" \ > ${WRKSRC}/conf-spamcontrol -. for option in ${SELECTED_OPTIONS} +. for option in ${SEL_OPTIONS} @${ECHO_CMD} ${option} >> ${WRKSRC}/conf-spamcontrol . endfor @${ECHO_CMD} "${UCSPISRC}/compile" > ${WRKSRC}/conf-ucspissl |