diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2018-06-22 04:18:32 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2018-06-22 04:18:32 +0800 |
commit | 18afdadc3f7690e8dda139a0578efd0c0d7940fb (patch) | |
tree | 655ecf923c342e358ae2afd8f0f488b57775dd44 /mail | |
parent | 1a067860d01213a782e5088b329bc79cb023aa36 (diff) | |
download | freebsd-ports-gnome-18afdadc3f7690e8dda139a0578efd0c0d7940fb.tar.gz freebsd-ports-gnome-18afdadc3f7690e8dda139a0578efd0c0d7940fb.tar.zst freebsd-ports-gnome-18afdadc3f7690e8dda139a0578efd0c0d7940fb.zip |
Drop always true (and tautologic) OSVERSION conditions
Approved by: portmgr blanket
Diffstat (limited to 'mail')
-rw-r--r-- | mail/postfix-current/Makefile | 2 | ||||
-rw-r--r-- | mail/postfix/Makefile | 2 | ||||
-rw-r--r-- | mail/postfix211/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile index 8bb78d8593ee..eb4d0e37f2f6 100644 --- a/mail/postfix-current/Makefile +++ b/mail/postfix-current/Makefile @@ -106,7 +106,7 @@ PLIST_SUB+= BMAN="" PLIST_SUB+= PFETC=${ETCDIR} # check if mailwrapper supports $LOCALBASE -.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1002506 || ${OSVERSION} >= 1100094) +.if ${OPSYS} == FreeBSD SUB_LIST+= USE_LOCALBASE_MAILER_CONF="yes" MC_PREFIX="${LOCALBASE}" .else SUB_LIST+= USE_LOCALBASE_MAILER_CONF="no" MC_PREFIX="" diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index 8327e5d5685f..a79e7713ba6e 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -106,7 +106,7 @@ PLIST_SUB+= BMAN="" PLIST_SUB+= PFETC=${ETCDIR} # check if mailwrapper supports $LOCALBASE -.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1002506 || ${OSVERSION} >= 1100094) +.if ${OPSYS} == FreeBSD SUB_LIST+= USE_LOCALBASE_MAILER_CONF="yes" MC_PREFIX="${LOCALBASE}" .else SUB_LIST+= USE_LOCALBASE_MAILER_CONF="no" MC_PREFIX="" diff --git a/mail/postfix211/Makefile b/mail/postfix211/Makefile index bfb044375736..6e7015717668 100644 --- a/mail/postfix211/Makefile +++ b/mail/postfix211/Makefile @@ -115,7 +115,7 @@ PLIST_SUB+= BMAN="" PLIST_SUB+= PFETC=${ETCDIR} # check if mailwrapper supports $LOCALBASE -.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1002506 || ${OSVERSION} >= 1100094) +.if ${OPSYS} == FreeBSD SUB_LIST+= USE_LOCALBASE_MAILER_CONF="yes" MC_PREFIX=${LOCALBASE} .else SUB_LIST+= USE_LOCALBASE_MAILER_CONF="no" MC_PREFIX="" |