From 00d598ede6dbeb8b945ea7daa2e663bfbfffb30f Mon Sep 17 00:00:00 2001 From: David Bauer Date: Wed, 11 Mar 2020 00:48:40 +0100 Subject: [PATCH] xr_usb_serial_common: 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 --- libs/xr_usb_serial_common/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/xr_usb_serial_common/Makefile b/libs/xr_usb_serial_common/Makefile index a2091dfa9e..b3797176d5 100644 --- a/libs/xr_usb_serial_common/Makefile +++ b/libs/xr_usb_serial_common/Makefile @@ -34,7 +34,7 @@ define Build/Compile +$(MAKE) $(PKG_JOBS) -C "$(LINUX_DIR)" \ ARCH="$(LINUX_KARCH)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ - SUBDIRS="$(PKG_BUILD_DIR)/xr_usb_serial_common-1a" \ + M="$(PKG_BUILD_DIR)/xr_usb_serial_common-1a" \ modules endef