Browse Source

external-toolchain.bbclass: skip build-deps test

Missing build deps don't matter when we don't build anything.

Signed-off-by: Christopher Larson <kergoth@gmail.com>
Christopher Larson 9 years ago
parent
commit
a51511d6ef
1 changed files with 3 additions and 0 deletions
  1. 3 0
      classes/external-toolchain.bbclass

+ 3 - 0
classes/external-toolchain.bbclass

@@ -21,6 +21,9 @@ S = "${WORKDIR}"
 # Prebuilt binaries, no need for any default dependencies
 INHIBIT_DEFAULT_DEPS = "1"
 
+# Missing build deps don't matter when we don't build anything
+INSANE_SKIP_${PN} += "build-deps"
+
 EXTERNAL_PN ?= "${@PN.replace('-external', '')}"
 PROVIDES += "${EXTERNAL_PN}"
 LICENSE = "CLOSED"