Browse Source

external-toolchain.bbclass: set S=WORKDIR

This avoids the build warnings due to a nonexistent ${S}.

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

+ 4 - 0
classes/external-toolchain.bbclass

@@ -14,6 +14,10 @@
 # LIC_FILES_CHKSUM, so use the license from common-licenses
 inherit common-license
 
+# We don't extract anything which will create S, and we don't want to see the
+# warning about it
+S = "${WORKDIR}"
+
 # Prebuilt binaries, no need for any default dependencies
 INHIBIT_DEFAULT_DEPS = "1"