external-toolchain.bbclass: set S=WORKDIR

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

Signed-off-by: Christopher Larson <kergoth@gmail.com>
This commit is contained in:
Christopher Larson
2015-04-28 13:29:38 -07:00
parent a0f481c1f7
commit 21d8241639

View File

@@ -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"