svn commit: r487755 - head/graphics/drm-fbsd12.0-kmod

Niclas Zeising zeising at FreeBSD.org
Tue Dec 18 15:50:50 UTC 2018


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)


More information about the svn-ports-all mailing list