diff options
author | Mark Hatle <mark.hatle@amd.com> | 2025-03-25 15:40:50 -0600 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2025-03-30 14:16:15 -0600 |
commit | 991d9a938bb2c3c0790d2d7d001ae4294a480306 (patch) | |
tree | edd5c3cb13f638d8bdc523f419dbe1ba8e6f306b | |
parent | 000a72cdff567b229b8e635c36441dfd30ded632 (diff) | |
download | meta-xilinx-991d9a938bb2c3c0790d2d7d001ae4294a480306.tar.gz |
meta-xilinx-standalone-sdt: check_sdt_enabled.bbclass: Update message
The message should refer to 'recipe' not 'package'. While subtle, 'package'
could confuse someone.
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r-- | meta-xilinx-standalone-sdt/classes-recipe/check_sdt_enabled.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-standalone-sdt/classes-recipe/check_sdt_enabled.bbclass b/meta-xilinx-standalone-sdt/classes-recipe/check_sdt_enabled.bbclass index e23afb1d..0fcb6bd4 100644 --- a/meta-xilinx-standalone-sdt/classes-recipe/check_sdt_enabled.bbclass +++ b/meta-xilinx-standalone-sdt/classes-recipe/check_sdt_enabled.bbclass | |||
@@ -1,4 +1,4 @@ | |||
1 | python() { | 1 | python() { |
2 | if d.getVar('XILINX_WITH_ESW') != 'sdt': | 2 | if d.getVar('XILINX_WITH_ESW') != 'sdt': |
3 | raise bb.parse.SkipRecipe("This package requires sdt, which is not enabled. XILINX_WITH_ESW set to '%s'." % d.getVar('XILINX_WITH_ESW')) | 3 | raise bb.parse.SkipRecipe("This recipe requires sdt workflow, which is not enabled. XILINX_WITH_ESW set to '%s'." % d.getVar('XILINX_WITH_ESW')) |
4 | } | 4 | } |