From: Christopher Larson Date: Thu, 10 Dec 2020 20:28:26 +0000 (-0700) Subject: grub-efi-cfg: exclude OVERRIDES from build_efi_cfg vardeps X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e9074822ddd32849c2df3194633964e09a381fa;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git grub-efi-cfg: exclude OVERRIDES from build_efi_cfg vardeps This function is primarily *appending* configuration entries to the overrides, it only gets it to ensure it's set at all, so doesn't belong in the vardeps. Having a dependency on OVERRIDES means you cannot use a bbclass like distrooverrides without changing the signatures of recipes using this class. Signed-off-by: Christopher Larson Signed-off-by: Richard Purdie --- diff --git a/meta/classes/grub-efi-cfg.bbclass b/meta/classes/grub-efi-cfg.bbclass index 3a2cdd698be..ea21b3de3d8 100644 --- a/meta/classes/grub-efi-cfg.bbclass +++ b/meta/classes/grub-efi-cfg.bbclass @@ -120,3 +120,4 @@ python build_efi_cfg() { cfgfile.close() } +build_efi_cfg[vardepsexclude] += "OVERRIDES"