diff options
author | Vsevolod Stakhov <vsevolod@FreeBSD.org> | 2020-02-18 18:54:51 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@FreeBSD.org> | 2020-02-18 18:54:51 +0000 |
commit | 521fa53036a9bcbe7916cffa5b9836c036c0fb68 (patch) | |
tree | 53898cabc099308808df298087344efc40f22205 /mail/exim/Makefile | |
parent | Update to 3.2.0 (diff) |
- Fix build with no DANE
Reported by: Alexander Sheiko <adsh at univ.kiev.ua> via email
Notes
Notes:
svn path=/head/; revision=526468
Diffstat (limited to 'mail/exim/Makefile')
-rw-r--r-- | mail/exim/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 7f7ab93a95b3..1442f6612d0f 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -213,8 +213,8 @@ SEDLIST+= -e 's,^\# (EXPERIMENTAL_CERTNAMES=),\1,' SEDLIST+= -e 's,^\# (EXPERIMENTAL_DSN=),\1,' .endif -.if ${PORT_OPTIONS:MDANE} -SEDLIST+= -e 's,^\# (SUPPORT_DANE=),\1,' +.if !${PORT_OPTIONS:MDANE} +SEDLIST+= -e 's,^(SUPPORT_DANE=),\#\1,' .endif .if ${PORT_OPTIONS:MARC} |