Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Jun 2018 20:31:00 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r472820 - in head/emulators: linux_base-c6 linux_base-c7
Message-ID:  <201806192031.w5JKV0MH005895@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Tue Jun 19 20:30:59 2018
New Revision: 472820
URL: https://svnweb.freebsd.org/changeset/ports/472820

Log:
  - Fix OSVERSION conditions
  
  Approved by:	portmgr blanket

Modified:
  head/emulators/linux_base-c6/Makefile
  head/emulators/linux_base-c7/Makefile

Modified: head/emulators/linux_base-c6/Makefile
==============================================================================
--- head/emulators/linux_base-c6/Makefile	Tue Jun 19 20:25:10 2018	(r472819)
+++ head/emulators/linux_base-c6/Makefile	Tue Jun 19 20:30:59 2018	(r472820)
@@ -3,7 +3,7 @@
 
 PORTNAME=	c6
 PORTVERSION=	${LINUX_DIST_VER}
-PORTREVISION=	7
+PORTREVISION=	8
 CATEGORIES=	emulators linux
 PKGNAMEPREFIX=	linux_base-
 BIN_DISTNAMES=	bash-4.1.2-48.el6 \
@@ -121,7 +121,7 @@ REMOVE_FILES=	bin/df bin/su etc/exports etc/group etc/
 
 .include <bsd.port.pre.mk>
 
-.if ${LINUX_ARCH} == x86_64 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 11000105
+.if ${LINUX_ARCH} == x86_64 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100105
 SYSCTLMIB=	kern.features.linux64
 .else
 SYSCTLMIB=	compat.linux.osrelease

Modified: head/emulators/linux_base-c7/Makefile
==============================================================================
--- head/emulators/linux_base-c7/Makefile	Tue Jun 19 20:25:10 2018	(r472819)
+++ head/emulators/linux_base-c7/Makefile	Tue Jun 19 20:30:59 2018	(r472820)
@@ -2,7 +2,7 @@
 
 PORTNAME=	c7
 PORTVERSION=	${LINUX_DIST_VER}
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	emulators linux
 PKGNAMEPREFIX=	linux_base-
 BIN_DISTNAMES=	centos-release-7-4.1708.el7.centos \
@@ -125,7 +125,7 @@ REMOVE_FILES=	bin/df bin/su etc/exports etc/group etc/
 
 .include <bsd.port.pre.mk>
 
-.if ${LINUX_ARCH} == x86_64 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 11000105
+.if ${LINUX_ARCH} == x86_64 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100105
 SYSCTLMIB=	kern.features.linux64
 .else
 SYSCTLMIB=	compat.linux.osrelease



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806192031.w5JKV0MH005895>