diff options
author | David Bauer <mail@david-bauer.net> | 2020-03-11 00:47:50 +0100 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2020-03-11 00:47:50 +0100 |
commit | 9515ddadffbe53ad4f060208bd384008d312572b (patch) | |
tree | d8bf9e78791b8067135f67971bb11bdc8c621d66 /libs/libpfring | |
parent | 3154c27cf7591ff8688d8d6873a02602c7aa66f0 (diff) |
libpfring: replace SUBDIRS with M in package recipe
The SUBDIRS variable has been removed in kernel 5.4, and was deprecated
since the beginnig of kernel git history in favour of M or KBUILD_EXTMOD.
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'libs/libpfring')
-rw-r--r-- | libs/libpfring/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libpfring/Makefile b/libs/libpfring/Makefile index e82297f20..d967c0a78 100644 --- a/libs/libpfring/Makefile +++ b/libs/libpfring/Makefile @@ -66,7 +66,7 @@ define Build/Compile KERNEL_DIR="$(LINUX_DIR)" \ ARCH="$(LINUX_KARCH)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ - SUBDIRS="$(PKG_BUILD_DIR)/kernel" \ + M="$(PKG_BUILD_DIR)/kernel" \ EXTRA_CFLAGS="$(EXTRA_CFLAGS) -I$(PKG_BUILD_DIR)/kernel" \ modules $(call Build/Compile/Default) |