From cbc43021903396f523e54ae1c1b331cfdefa7ad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 5 Sep 2022 23:05:16 +0200 Subject: [PATCH] cmake_extra_sanity.bbclass: Fix typo in comment / correct path in error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- classes/cmake_extra_sanity.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/cmake_extra_sanity.bbclass b/classes/cmake_extra_sanity.bbclass index f8a10201..ba725f68 100644 --- a/classes/cmake_extra_sanity.bbclass +++ b/classes/cmake_extra_sanity.bbclass @@ -22,7 +22,7 @@ do_install:append() { # TBD: -> oe-core (1st part - genarated sources - should work with autotools too) if [ x = x$no_staging_check ] ; then error= - # check for genarated sources + # check for generated sources for f in `find ${B} -name '*.h' -o -name '*.cpp'` ; do if grep -q 'recipe-sysroot' $f ; then bbwarn "$f contains links to build sysroot!" @@ -40,7 +40,7 @@ do_install:append() { done if [ x != x$error ] ; then - bbfatal "One or more files contain links to build host sysroot ${STAGING_DIR}" + bbfatal "One or more files contain links to build host sysroot ${STAGING_DIR_HOST}(-native)" fi fi }