From b07e79ea049d341a5a0a7e4bb72151f49336c5bc Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 6 Feb 2013 13:54:31 -0800 Subject: [PATCH] package.bbclass: Replace undefined 'src' with valid variable After rewrite of split_and_strip_files src var is no longer available here where it is used so we should replace it with a valid value Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/classes/package.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 69a4924ebb..b10e6f6a4a 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -766,7 +766,7 @@ python split_and_strip_files () { elf_file = isELF(file) if elf_file & 1: if elf_file & 2: - bb.warn("File '%s' from %s was already stripped, this will prevent future debugging!" % (src, pn)) + bb.warn("File '%s' from %s was already stripped, this will prevent future debugging!" % (file[len(dvar):], pn)) continue # Check if it's a hard link to something else if s.st_nlink > 1: -- 2.40.1