From: Richard Purdie Date: Tue, 13 Jun 2017 09:17:21 +0000 (+0100) Subject: utils: Exclude OVERRIDES from hashes in multilib functions X-Git-Tag: uninative-1.7~511 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3787908e0ffc98ec0dd13929b5dfa5ea83889871;p=openembedded-core.git utils: Exclude OVERRIDES from hashes in multilib functions --- diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index 96463ab323..081e662da1 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass @@ -369,6 +369,7 @@ def get_multilib_datastore(variant, d): localdata.setVar("OVERRIDES", overrides) localdata.setVar("MLPREFIX", variant + "-") return localdata +get_multilib_datastore[vardepsexclude] = "OVERRIDES" def all_multilib_tune_values(d, var, unique = True, need_split = True, delim = ' '): """Return a string of all ${var} in all multilib tune configuration""" @@ -431,6 +432,7 @@ def all_multilib_tune_list(vars, d): values[v].append(localdata.getVar(v)) values['ml'].append(item) return values +all_multilib_tune_list[vardepsexclude] = "OVERRIDES" # If the user hasn't set up their name/email, set some defaults check_git_config() {