From: Richard Purdie Date: Mon, 5 Jan 2009 15:57:50 +0000 (+0000) Subject: native.bbclass: Handling remapping of PROVIDES similar to sdk.bbclass X-Git-Tag: 2011-1~7658 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=fb9196ddcf88efdc2589eccbff062a69ae659007;p=openembedded-core.git native.bbclass: Handling remapping of PROVIDES similar to sdk.bbclass --- diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 1fb6e66ced..91ea9b547d 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass @@ -119,5 +119,15 @@ python __anonymous () { else: bb.note("%s has depends %s which doesn't end in -native?" % (pn, dep)) bb.data.setVar("DEPENDS", depends, d) + provides = bb.data.getVar("PROVIDES", d, True) + for prov in provides.split(): + if prov.find(pn) != -1: + continue + if not prov.endswith("-native"): + if autoextend: + provides = provides.replace(prov, prov + "-native") + #else: + # bb.note("%s has rouge PROVIDES of %s which doesn't end in -sdk?" % (pn, prov)) + bb.data.setVar("PROVIDES", provides, d) }