Date: Wed, 21 Oct 2020 20:21:19 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r552893 - head/graphics/linux-c7-libdrm Message-ID: <202010212021.09LKLJxQ038511@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rene Date: Wed Oct 21 20:21:19 2020 New Revision: 552893 URL: https://svnweb.freebsd.org/changeset/ports/552893 Log: graphics/linux-c7-libdrm: simplify check for supported versions after 11.3 EOL Modified: head/graphics/linux-c7-libdrm/Makefile Modified: head/graphics/linux-c7-libdrm/Makefile ============================================================================== --- head/graphics/linux-c7-libdrm/Makefile Wed Oct 21 20:20:03 2020 (r552892) +++ head/graphics/linux-c7-libdrm/Makefile Wed Oct 21 20:21:19 2020 (r552893) @@ -19,8 +19,8 @@ OPTIONS_DEFINE= DOCS .include <bsd.port.options.mk> -.if ${OPSYS} == FreeBSD && (${OSVERSION} < 1103501 \ - || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1201501) \ +.if ${OPSYS} == FreeBSD && \ + ((${OSVERSION} >= 1200000 && ${OSVERSION} < 1201501) \ || (${OSVERSION} >= 1300000 && ${OSVERSION} < 1300048)) PORTVERSION= 2.4.91 DISTVERSIONSUFFIX= -3.el7
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010212021.09LKLJxQ038511>