From: David Bauer Date: Tue, 10 Mar 2020 23:50:22 +0000 (+0100) Subject: siit: replace SUBDIRS with M in package recipe X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5feeeb69c94610298052634be53120f86e37e375;p=openwrt-packages.git siit: 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 --- diff --git a/net/siit/Makefile b/net/siit/Makefile index e3d13005f..a890a257b 100644 --- a/net/siit/Makefile +++ b/net/siit/Makefile @@ -36,7 +36,7 @@ define Build/Prepare endef define Build/Compile - $(MAKE) $(KERNEL_MAKEOPTS) SUBDIRS="$(PKG_BUILD_DIR)" modules + $(MAKE) $(KERNEL_MAKEOPTS) M="$(PKG_BUILD_DIR)" modules endef $(eval $(call KernelPackage,siit))