diff mbox series

bin_package.bbclass: Inhibit the default dependencies

Message ID 20230818160919.1281883-1-pkj@axis.com
State Accepted, archived
Commit d1d09bd4d7be88f0e341d5fccbfbefeb98d4b727
Headers show
Series bin_package.bbclass: Inhibit the default dependencies | expand

Commit Message

Peter Kjellerstedt Aug. 18, 2023, 4:09 p.m. UTC
Nothing is being built so there is no need for the cross-compiler.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta/classes-recipe/bin_package.bbclass | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

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 @@ 
 # they would be in ${WORKDIR}.
 #
 
+# Nothing is being built so there is no need for the cross-compiler.
+INHIBIT_DEFAULT_DEPS = "1"
+
 # Skip the unwanted steps
 do_configure[noexec] = "1"
 do_compile[noexec] = "1"