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/4.9.82-1+deb9u3+rpi1_jessie~10^2~18 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=67d9d88b42fbb21ff2cf746721de197055ae211e;p=linux-4.9.git kbuild: Fix recordmcount dependency for OOT modules 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 7675d11ee65e..40c4cc4c95aa 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -244,6 +244,11 @@ cmd_record_mcount = \ fi; endif +# Don't require recordmcount source for an OOT build. +ifdef KBUILD_EXTMOD +recordmcount_source := +endif + ifdef CONFIG_STACK_VALIDATION ifneq ($(SKIP_STACK_VALIDATION),1)