From 4d4633ae3d235d3508f34440458aa9cdccd0ecfe Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Sat, 15 Oct 2022 05:18:11 +0900 Subject: [PATCH] kbuild: fix single directory build Commit a9d3bdc81687 ("kbuild: refactor single builds of *.ko") was wrong. KBUILD_MODULES _is_ needed for single builds. Otherwise, "make foo/bar/baz/" does not build module objects at all. Fixes: a9d3bdc81687 ("kbuild: refactor single builds of *.ko") Reported-by: David Sterba Signed-off-by: Masahiro Yamada Tested-by: David Sterba --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 85a63a1d29b37..48a005fc69ca0 100644 --- a/Makefile +++ b/Makefile @@ -1978,6 +1978,8 @@ endif single-goals := $(addprefix $(build-dir)/, $(single-no-ko)) +KBUILD_MODULES := 1 + endif # Preset locale variables to speed up the build process. Limit locale -- 2.39.5