From 5091c82333b651249f24ee0be22392882c6a5a0c Mon Sep 17 00:00:00 2001 From: David Bauer Date: Wed, 11 Mar 2020 00:45:50 +0100 Subject: [PATCH] lttng: 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 --- devel/lttng-modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/lttng-modules/Makefile b/devel/lttng-modules/Makefile index 11b30b6d7..08d93d277 100644 --- a/devel/lttng-modules/Makefile +++ b/devel/lttng-modules/Makefile @@ -37,7 +37,7 @@ define Build/Compile $(MAKE) -C "$(LINUX_DIR)" \ ARCH="$(LINUX_KARCH)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ - SUBDIRS="$(PKG_BUILD_DIR)" \ + M="$(PKG_BUILD_DIR)" \ V="$(V)" \ modules endef