From 3fd92a4ca097f8da5c5d671aa9ee7249afa73b6a Mon Sep 17 00:00:00 2001 From: Niclas Zeising Date: Tue, 18 Dec 2018 15:50:49 +0000 Subject: [PATCH] Fix version check. THis is only supported on 12 and later. Noticed by: jbeich --- graphics/drm-fbsd12.0-kmod/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphics/drm-fbsd12.0-kmod/Makefile b/graphics/drm-fbsd12.0-kmod/Makefile index 9df191cdf7d5..179c90397b48 100644 --- a/graphics/drm-fbsd12.0-kmod/Makefile +++ b/graphics/drm-fbsd12.0-kmod/Makefile @@ -29,8 +29,8 @@ GH_TAGNAME= 71fcc9f .include -.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)