From b2df633444bfeccd2a88503aeafaf52b7e5aa101 Mon Sep 17 00:00:00 2001 From: David Bauer Date: Wed, 11 Mar 2020 00:49:30 +0100 Subject: [PATCH] wifidog-ng: 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 --- net/wifidog-ng/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/wifidog-ng/Makefile b/net/wifidog-ng/Makefile index c936e3ad5c..b9d7d76410 100644 --- a/net/wifidog-ng/Makefile +++ b/net/wifidog-ng/Makefile @@ -89,7 +89,7 @@ endef include $(INCLUDE_DIR)/kernel-defaults.mk define Build/Compile - $(MAKE) $(KERNEL_MAKEOPTS) SUBDIRS="$(PKG_BUILD_DIR)" modules + $(MAKE) $(KERNEL_MAKEOPTS) M="$(PKG_BUILD_DIR)" modules endef $(eval $(call BuildPackage,wifidog-ng-nossl))