Date: Sun, 29 May 2016 17:11:41 +0000 (UTC) From: Sean Bruno <sbruno@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416117 - in head: net/intel-ixl-kmod sysutils/intel-nvmupdate Message-ID: <201605291711.u4THBf6w043371@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605291711.u4THBf6w043371>