From 69fe576fae8a8c3754c0ac38bb3d802bb086982f Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Mon, 8 Sep 2014 18:31:24 +0100 Subject: [PATCH] kbuild: Fix recordmcount dependency for OOT modules Forwarded: no We never rebuild anything in-tree when building an out-of-tree modules, so external modules should not depend on the recordmcount sources. Gbp-Pq: Topic bugfix/all Gbp-Pq: Name kbuild-fix-recordmcount-dependency.patch --- scripts/Makefile.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 1827bc1db1e..81f0cc5f420 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -211,6 +211,11 @@ cmd_record_mcount = $(if $(findstring $(strip $(CC_FLAGS_FTRACE)),$(_c_flags)), $(sub_cmd_record_mcount)) endif # CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT +# Don't require recordmcount source for an OOT build. +ifdef KBUILD_EXTMOD +recordmcount_source := +endif + # 'OBJECT_FILES_NON_STANDARD := y': skip objtool checking for a directory # 'OBJECT_FILES_NON_STANDARD_foo.o := 'y': skip objtool checking for a file # 'OBJECT_FILES_NON_STANDARD_foo.o := 'n': override directory skip for a file -- 2.30.2