From c8a0e7ecee15985f7eed10ce9c86c48a77c5b7c5 Mon Sep 17 00:00:00 2001 From: Marta Rybczynska Date: Fri, 3 Jun 2022 10:58:27 +0200 Subject: cve-check: move update_symlinks to a library Move the function to a library, it could be useful in other places. Signed-off-by: Marta Rybczynska Signed-off-by: Richard Purdie (cherry picked from commit debd37abcdde8788761ebdb4a05bc61f7394cbb8) Signed-off-by: Steve Sakoman --- meta/lib/oe/cve_check.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'meta/lib/oe/cve_check.py') diff --git a/meta/lib/oe/cve_check.py b/meta/lib/oe/cve_check.py index 1d3c775bbe..b17390de90 100644 --- a/meta/lib/oe/cve_check.py +++ b/meta/lib/oe/cve_check.py @@ -79,3 +79,13 @@ def cve_check_merge_jsons(output, data): return output["package"].append(data["package"][0]) + +def update_symlinks(target_path, link_path): + """ + Update a symbolic link link_path to point to target_path. + Remove the link and recreate it if exist and is different. + """ + if link_path != target_path and os.path.exists(target_path): + if os.path.exists(os.path.realpath(link_path)): + os.remove(link_path) + os.symlink(os.path.basename(target_path), link_path) -- cgit 1.2.3-korg