svn commit: r488334 - head/databases/influxdb

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Dec 25 19:01:09 UTC 2018


Author: amdmi3
Date: Tue Dec 25 19:01:08 2018
New Revision: 488334
URL: https://svnweb.freebsd.org/changeset/ports/488334

Log:
  - Simplify always-true OSVERSION condition
  
  Approved by:	portmgr blanket

Modified:
  head/databases/influxdb/Makefile

Modified: head/databases/influxdb/Makefile
==============================================================================
--- head/databases/influxdb/Makefile	Tue Dec 25 18:47:31 2018	(r488333)
+++ head/databases/influxdb/Makefile	Tue Dec 25 19:01:08 2018	(r488334)
@@ -103,8 +103,7 @@ PLIST_SUB=	INFLUXD_USER=${INFLUXD_USER} \
 
 .include <bsd.port.pre.mk>
 
-.if ${OPSYS} == "FreeBSD" && ((${OSVERSION} >= 1100513 && ${OSVERSION} < 1200000) || \
-	${OSVERSION} >= 1200015)
+.if ${OPSYS} == "FreeBSD"
 SUB_LIST+=	INFLUXD_LOGCMD="daemon"
 .else
 SUB_LIST+=	INFLUXD_LOGCMD="logger"


More information about the svn-ports-head mailing list