From 61bd265651b48486910343232c69c71b2b311f58 Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Tue, 28 Jul 2026 21:06:17 +0200 Subject: [PATCH] sstate.bbclass: Correct a typo in an error message Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- meta/classes-global/sstate.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-global/sstate.bbclass b/meta/classes-global/sstate.bbclass index 6ee83717bb..169654767c 100644 --- a/meta/classes-global/sstate.bbclass +++ b/meta/classes-global/sstate.bbclass @@ -663,7 +663,7 @@ def sstate_package(ss, d): for dir in dirs: dir = os.path.join(walkroot, dir).removeprefix(state[1]) if tmpdir in dir: - bb.error("sstate found a tmpdir path reference in installation directiory %s which must be removed." % dir) + bb.error("sstate found a tmpdir path reference in installation directory %s which must be removed." % dir) exit = True bb.debug(2, "Preparing tree %s for packaging at %s" % (state[1], sstatebuild + state[0])) bb.utils.rename(state[1], sstatebuild + state[0]) -- 2.47.3