提交 6212804f 编写于 作者: M Masahiro Yamada

kbuild: do not create built-in objects for external module builds

'make M=/path/to/your/external/module' creates a pointless built-in.a
in the top of the external module directory because KBUILD_BUILTIN is
set to 1.

Clear KBUILD_BUILTIN when we are building external modules so that
'make M=...' and 'make M=... modules' work equivalently.
Signed-off-by: NMasahiro Yamada <masahiroy@kernel.org>
上级 596b0474
......@@ -1702,7 +1702,8 @@ else # KBUILD_EXTMOD
# Install the modules built in the module directory
# Assumes install directory is already created
# We are always building modules
# We are always building only modules.
KBUILD_BUILTIN :=
KBUILD_MODULES := 1
build-dirs := $(KBUILD_EXTMOD)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册