diff options
author | 2018-09-12 14:02:27 +0200 | |
---|---|---|
committer | 2021-02-20 18:39:10 +0100 | |
commit | b85c073aa3037446d3a84646cae7aabab07836bf (patch) | |
tree | f597684df9941cc9c8ee53a52fbadda84d7d8acc | |
parent | 77c0b44bbfd192ed8977df6dcfe55d5defeab350 (diff) | |
download | slackbuilds-acpi_call.tar.gz |
system/acpi_call: Fix for the newer kernels.acpi_call
Thanks to giomat on LQ for reporting!
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
-rw-r--r-- | system/acpi_call/acpi_call.SlackBuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/acpi_call/acpi_call.SlackBuild b/system/acpi_call/acpi_call.SlackBuild index cbba19ee17..61e7be7220 100644 --- a/system/acpi_call/acpi_call.SlackBuild +++ b/system/acpi_call/acpi_call.SlackBuild @@ -67,6 +67,9 @@ find -L . \ patch -p0 < $CWD/fix-acpi-include.patch patch -p0 < $CWD/fix-5.x-kernel.patch +# Fix build with Linux >= 4.12 +sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c + make KDIR=$KERNELPATH mkdir -p $PKG/lib/modules/$KERNEL/misc |