eglibc-sourcery: skip package when not using exttc

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
This commit is contained in:
Christopher Larson
2012-08-01 13:36:07 -07:00
parent 4f3412df90
commit fb661939e7

View File

@@ -53,3 +53,11 @@ do_configure () {
}
require recipes/eglibc/eglibc-package-adjusted.inc
CSL_VER_MAIN ??= ""
CSL_VER_LIBC ??= ""
python () {
if not d.getVar("CSL_VER_MAIN"):
raise bb.parse.SkipPackage("External CSL toolchain not configured (CSL_VER_MAIN not set).")
}