Merge pull request #4 from pointhi/var_fix

Fix DKMS: Variable specified in Makefile is KDIR, not KERNELDIR
This commit is contained in:
Christian Loritz 2018-08-20 18:21:41 +02:00 committed by GitHub
commit f22b318e27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,6 @@ DEST_MODULE_LOCATION=/kernel/lib/
BUILT_MODULE_NAME=tuxedo_keyboard
BUILT_MODULE_LOCATION=src/
MAKE="make -C . KERNELDIR=/lib/modules/${kernelver}/build"
MAKE="make -C . KDIR=/lib/modules/${kernelver}/build"
CLEAN="make -C src/ clean"
AUTOINSTALL="yes"