From e105befbe4ee0d85e94c2048a744f0373e2dbcdf Mon Sep 17 00:00:00 2001 From: Peter Marko Date: Thu, 11 Aug 2022 14:35:13 +0200 Subject: create-spdx: handle links to inaccessible locations When a link is pointing to location inaccessible to build user (e.g. "/root/something"), filepath.is_file() throws "PermissionError: [Errno 13] Permission denied". Fix this by first checking if it is a link. Signed-off-by: Peter Marko Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- meta/classes/create-spdx.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes/create-spdx.bbclass') diff --git a/meta/classes/create-spdx.bbclass b/meta/classes/create-spdx.bbclass index 383ca10bab..47dd12c383 100644 --- a/meta/classes/create-spdx.bbclass +++ b/meta/classes/create-spdx.bbclass @@ -218,7 +218,7 @@ def add_package_files(d, doc, spdx_pkg, topdir, get_spdxid, get_types, *, archiv filepath = Path(subdir) / file filename = str(filepath.relative_to(topdir)) - if filepath.is_file() and not filepath.is_symlink(): + if not filepath.is_symlink() and filepath.is_file(): spdx_file = oe.spdx.SPDXFile() spdx_file.SPDXID = get_spdxid(file_counter) for t in get_types(filepath): -- cgit 1.2.3-korg