From: Jan Engelhardt Date: Tue, 25 Feb 2020 06:30:01 +0000 (+0100) Subject: build: avoid configure warning for Linux 4.15 X-Git-Tag: v3.9~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08883576420d6cf33a2b69560a60d9adb1b5d20b;p=thirdparty%2Fxtables-addons.git build: avoid configure warning for Linux 4.15 Commit 4603d3e0f477dcb795a69196071cda66211819c0 and others erroneously changed the acceptance range from >=4.15 to >=4.17. Return to previous state. --- diff --git a/configure.ac b/configure.ac index 1645a11..2c31263 100644 --- a/configure.ac +++ b/configure.ac @@ -61,7 +61,7 @@ if test -n "$kbuilddir"; then echo "WARNING: That kernel version is not officially supported yet. Continue at own luck."; elif test "$kmajor" -eq 5 -a "$kminor" -ge 0; then : - elif test "$kmajor" -eq 4 -a "$kminor" -ge 18; then + elif test "$kmajor" -eq 4 -a "$kminor" -ge 15; then : else echo "WARNING: That kernel version is not officially supported.";