From: David Bauer Date: Tue, 10 Mar 2020 23:49:30 +0000 (+0100) Subject: wifidog-ng: replace SUBDIRS with M in package recipe X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=b2df633444bfeccd2a88503aeafaf52b7e5aa101;p=openwrt-packages.git 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 --- diff --git a/net/wifidog-ng/Makefile b/net/wifidog-ng/Makefile index c936e3ad5..b9d7d7641 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))