Browse Source

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>
lilik-openwrt-22.03
David Bauer 4 years ago
parent
commit
9515ddadff
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libs/libpfring/Makefile

+ 1
- 1
libs/libpfring/Makefile View File

@ -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)


Loading…
Cancel
Save