svn commit: r416117 - in head: net/intel-ixl-kmod sysutils/intel-nvmupdate

Sean Bruno sbruno at FreeBSD.org
Sun May 29 17:11:42 UTC 2016


Author: sbruno
Date: Sun May 29 17:11:40 2016
New Revision: 416117
URL: https://svnweb.freebsd.org/changeset/ports/416117

Log:
  Allow building sysutils/intel-nvmupdate and net/intel-ixl-kmod on 10.1-RELEASE
  
  The packaging cluster is building packages for 10.x on 10.1-RELEASE machine,
  so the ports couldn't be built into packages due to IGNORE statement for
  1001000 OSVERSION.
  
  Submitted by:	Sergey Kozlov <kozlov.sergey.404 at gmail.com>
  Sponsored by:	Intel Corporation
  Differential Revision:	https://reviews.freebsd.org/D6473

Modified:
  head/net/intel-ixl-kmod/Makefile
  head/sysutils/intel-nvmupdate/Makefile

Modified: head/net/intel-ixl-kmod/Makefile
==============================================================================
--- head/net/intel-ixl-kmod/Makefile	Sun May 29 16:48:54 2016	(r416116)
+++ head/net/intel-ixl-kmod/Makefile	Sun May 29 17:11:40 2016	(r416117)
@@ -29,8 +29,8 @@ ONLY_FOR_ARCHS_REASON=	Not supported on 
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} < 1002000
-IGNORE=		is not supported on FreeBSD 10.1 and older
+.if ${OSVERSION} < 1001000
+IGNORE=		is not supported on FreeBSD 10.0 and older
 .endif
 
 .if ${OSVERSION} >= 1100000

Modified: head/sysutils/intel-nvmupdate/Makefile
==============================================================================
--- head/sysutils/intel-nvmupdate/Makefile	Sun May 29 16:48:54 2016	(r416116)
+++ head/sysutils/intel-nvmupdate/Makefile	Sun May 29 17:11:40 2016	(r416117)
@@ -36,8 +36,8 @@ NVMUPDATE_DIR=	intel-nvmupdate
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} < 1002000
-IGNORE=		is not supported on FreeBSD 10.1 and older
+.if ${OSVERSION} < 1001000
+IGNORE=		is not supported on FreeBSD 10.0 and older
 .endif
 
 .if ${OSVERSION} >= 1100000


More information about the svn-ports-head mailing list