diff options
author | marino <marino@FreeBSD.org> | 2016-01-06 00:08:15 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-01-06 00:08:15 +0800 |
commit | 6fa2a2449e9cdc7dc2dd900385be9630a52a181a (patch) | |
tree | 80baee4fc85c9018e517dc80150b87d5b34ac4f9 /mail/qmail | |
parent | 1643c5ca9b16c6a79d38041f8c6f6f101255da92 (diff) | |
download | freebsd-ports-graphics-6fa2a2449e9cdc7dc2dd900385be9630a52a181a.tar.gz freebsd-ports-graphics-6fa2a2449e9cdc7dc2dd900385be9630a52a181a.tar.zst freebsd-ports-graphics-6fa2a2449e9cdc7dc2dd900385be9630a52a181a.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
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 184e149886a..761a7758df3 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 |