diff options
| author | Ulrich Ölmann <u.oelmann@pengutronix.de> | 2023-02-07 15:31:14 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-15 21:47:00 +0000 |
| commit | 7ff0e3f58726df8c989cbf87fecefa40743b8ed9 (patch) | |
| tree | ddc4eb1dd9d838993a8d66c695be71d20eb16437 | |
| parent | d9f169585cf67eb5e5c98cf2b5cad5ecc5066329 (diff) | |
| download | poky-7ff0e3f58726df8c989cbf87fecefa40743b8ed9.tar.gz | |
recipe_sanity: fix old override syntax
(From OE-Core rev: 6779319cfae0ea75cba3419f0aedf94838ccf80f)
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 18eeea6fcd8ade49390a978134f51646da2f7764)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/classes/recipe_sanity.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/recipe_sanity.bbclass b/meta/classes/recipe_sanity.bbclass index 1c2e24c6a1..a5cc4315fb 100644 --- a/meta/classes/recipe_sanity.bbclass +++ b/meta/classes/recipe_sanity.bbclass | |||
| @@ -16,7 +16,7 @@ def bad_runtime_vars(cfgdata, d): | |||
| 16 | for var in d.getVar("__recipe_sanity_badruntimevars").split(): | 16 | for var in d.getVar("__recipe_sanity_badruntimevars").split(): |
| 17 | val = d.getVar(var, False) | 17 | val = d.getVar(var, False) |
| 18 | if val and val != cfgdata.get(var): | 18 | if val and val != cfgdata.get(var): |
| 19 | __note("%s should be %s_${PN}" % (var, var), d) | 19 | __note("%s should be %s:${PN}" % (var, var), d) |
| 20 | 20 | ||
| 21 | __recipe_sanity_reqvars = "DESCRIPTION" | 21 | __recipe_sanity_reqvars = "DESCRIPTION" |
| 22 | __recipe_sanity_reqdiffvars = "" | 22 | __recipe_sanity_reqdiffvars = "" |
