diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2023-08-18 18:09:19 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-08-21 11:34:12 +0100 |
commit | b7b382101b401deda2df5e7f71e581d8ced51f5f (patch) | |
tree | bb9532b622f78140968a4baace45e958e8c3e511 | |
parent | 081f4ecaed813d5027cfb5100017abe8cf200e67 (diff) | |
download | poky-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>
-rw-r--r-- | meta/classes-recipe/bin_package.bbclass | 3 |
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. | ||
24 | INHIBIT_DEFAULT_DEPS = "1" | ||
25 | |||
23 | # Skip the unwanted steps | 26 | # Skip the unwanted steps |
24 | do_configure[noexec] = "1" | 27 | do_configure[noexec] = "1" |
25 | do_compile[noexec] = "1" | 28 | do_compile[noexec] = "1" |