From 21d8241639fa5e02cba7f1970d280b01577af6b6 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Tue, 28 Apr 2015 13:29:38 -0700 Subject: [PATCH] external-toolchain.bbclass: set S=WORKDIR This avoids the build warnings due to a nonexistent ${S}. Signed-off-by: Christopher Larson --- classes/external-toolchain.bbclass | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/classes/external-toolchain.bbclass b/classes/external-toolchain.bbclass index 251096e..a45886b 100644 --- a/classes/external-toolchain.bbclass +++ b/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"