Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Dec 2018 15:50:49 +0000 (UTC)
From:      Niclas Zeising <zeising@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r487755 - head/graphics/drm-fbsd12.0-kmod
Message-ID:  <201812181550.wBIFooKv096321@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zeising
Date: Tue Dec 18 15:50:49 2018
New Revision: 487755
URL: https://svnweb.freebsd.org/changeset/ports/487755

Log:
  Fix version check.  THis is only supported on 12 and later.
  
  Noticed by:	jbeich

Modified:
  head/graphics/drm-fbsd12.0-kmod/Makefile

Modified: head/graphics/drm-fbsd12.0-kmod/Makefile
==============================================================================
--- head/graphics/drm-fbsd12.0-kmod/Makefile	Tue Dec 18 15:29:48 2018	(r487754)
+++ head/graphics/drm-fbsd12.0-kmod/Makefile	Tue Dec 18 15:50:49 2018	(r487755)
@@ -29,8 +29,8 @@ GH_TAGNAME=	71fcc9f
 
 .include <bsd.port.options.mk>
 
-.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200000 && ${OSVERSION} < 1200058
-IGNORE=		not supported on older CURRENT, no kernel support
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200058
+IGNORE=		only supported on FreeBSD 12.0 and later
 .endif
 .if ${OPSYS} != FreeBSD
 IGNORE=		not supported on anything but FreeBSD (missing linuxkpi functionality)



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