From 991d9a938bb2c3c0790d2d7d001ae4294a480306 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Tue, 25 Mar 2025 15:40:50 -0600 Subject: 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 --- meta-xilinx-standalone-sdt/classes-recipe/check_sdt_enabled.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ python() { if d.getVar('XILINX_WITH_ESW') != 'sdt': - raise bb.parse.SkipRecipe("This package requires sdt, which is not enabled. XILINX_WITH_ESW set to '%s'." % d.getVar('XILINX_WITH_ESW')) + raise bb.parse.SkipRecipe("This recipe requires sdt workflow, which is not enabled. XILINX_WITH_ESW set to '%s'." % d.getVar('XILINX_WITH_ESW')) } -- cgit v1.2.3-54-g00ecf