sys-kernel/spl: Fix max kernel version for -9999 #632640
authorPatrick Lauer <patrick@gentoo.org>
Sun, 22 Oct 2017 13:53:50 +0000 (13:53 +0000)
committerPatrick Lauer <patrick@gentoo.org>
Sun, 22 Oct 2017 13:54:00 +0000 (13:54 +0000)
Package-Manager: Portage-2.3.12, Repoman-2.3.3

sys-kernel/spl/spl-9999.ebuild

index 074b776b6d04798a71bcd84fc0769e552107566d..eb6159b9a65bfa5cec0469f2a147a32cd060be86 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -55,7 +55,7 @@ pkg_setup() {
        kernel_is ge 2 6 32 || die "Linux 2.6.32 or newer required"
 
        [ ${PV} != "9999" ] && \
-               { kernel_is le 4 3 || die "Linux 4.3 is the latest supported version."; }
+               { kernel_is le 4 13 || die "Linux 4.13 is the latest supported version."; }
 
        check_extra_config
 }