summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/bin_package.bbclass
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2023-08-18 18:09:19 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-21 11:34:12 +0100
commitb7b382101b401deda2df5e7f71e581d8ced51f5f (patch)
treebb9532b622f78140968a4baace45e958e8c3e511 /meta/classes-recipe/bin_package.bbclass
parent081f4ecaed813d5027cfb5100017abe8cf200e67 (diff)
downloadpoky-b7b382101b401deda2df5e7f71e581d8ced51f5f.tar.gz
bin_package.bbclass: Inhibit the default dependencies
Nothing is being built so there is no need for the cross-compiler. (From OE-Core rev: d1d09bd4d7be88f0e341d5fccbfbefeb98d4b727) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/bin_package.bbclass')
-rw-r--r--meta/classes-recipe/bin_package.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes-recipe/bin_package.bbclass b/meta/classes-recipe/bin_package.bbclass
index 3a1befc29c..9dd2489725 100644
--- a/meta/classes-recipe/bin_package.bbclass
+++ b/meta/classes-recipe/bin_package.bbclass
@@ -20,6 +20,9 @@
20# they would be in ${WORKDIR}. 20# they would be in ${WORKDIR}.
21# 21#
22 22
23# Nothing is being built so there is no need for the cross-compiler.
24INHIBIT_DEFAULT_DEPS = "1"
25
23# Skip the unwanted steps 26# Skip the unwanted steps
24do_configure[noexec] = "1" 27do_configure[noexec] = "1"
25do_compile[noexec] = "1" 28do_compile[noexec] = "1"