From 785d4af8e75cdc69dc1c0be43f7ed56f540f2df5 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 13 Jun 2017 10:17:21 +0100 Subject: utils: Exclude OVERRIDES from hashes in multilib functions Signed-off-by: Richard Purdie --- meta/classes/utils.bbclass | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta/classes/utils.bbclass') 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() { -- cgit v1.2.3-54-g00ecf