update-alternatives.bbclass: Disable for mingw32 targets

When building for mingw32 targets (e.g. nativesdk cross compiling for
windows), disable the dependency on update-alternatives as the Windows
platform does not support symlinks or package management.

This avoids the complex (partly non-buildable for mingw32) dependency
chain virtual/update-alternatives -> opkg-utils -> python -> ...

(From OE-Core rev: 0131abe2d94d6836a54bc1616566c3bf3f2d6eb0)

Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Nathan Rossi 2017-02-21 23:17:28 +10:00 committed by Richard Purdie
parent f6eec55982
commit 09a253d09f
1 changed files with 4 additions and 0 deletions

View File

@ -96,6 +96,10 @@ python __anonymous() {
bb.data.inherits_class('cross-canadian', d):
return
# Disable when targeting mingw32 (no target support)
if d.getVar("TARGET_OS") == "mingw32":
return
# compute special vardeps
gen_updatealternativesvardeps(d)