From: Ben Hutchings Date: Mon, 8 Sep 2014 17:31:24 +0000 (+0100) Subject: kbuild: Fix recordmcount dependency for OOT modules X-Git-Tag: archive/raspbian/5.7.6-1+rpi1^2^2~13 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c327e6c2f414b293e42657a3a8f15f7bafd67ddf;p=linux.git 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 --- diff --git a/scripts/Makefile.build b/scripts/Makefile.build index a1730d42e5f..9200becc80b 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -193,6 +193,11 @@ cmd_record_mcount = $(if $(findstring $(strip $(CC_FLAGS_FTRACE)),$(_c_flags)), endif # CC_USING_RECORD_MCOUNT endif # CONFIG_FTRACE_MCOUNT_RECORD +# Don't require recordmcount source for an OOT build. +ifdef KBUILD_EXTMOD +recordmcount_source := +endif + ifdef CONFIG_STACK_VALIDATION ifneq ($(SKIP_STACK_VALIDATION),1)