diff options
| author | Marta Rybczynska <rybczynska@gmail.com> | 2022-06-03 10:58:27 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-11 10:06:13 +0100 |
| commit | 7f22fb48eb910e5325d659e2513003c812289194 (patch) | |
| tree | 7e6116b22bdf50961b515353ea4705a30dee3fe7 /meta/lib | |
| parent | 2d031b7e2ab983fe3738f1f585df7058150cca99 (diff) | |
| download | poky-7f22fb48eb910e5325d659e2513003c812289194.tar.gz | |
cve-check: move update_symlinks to a library
Move the function to a library, it could be useful in other places.
(From OE-Core rev: 66bf08f2df478a909a12756c650dcc2ae09a0a47)
Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit debd37abcdde8788761ebdb4a05bc61f7394cbb8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oe/cve_check.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/lib/oe/cve_check.py b/meta/lib/oe/cve_check.py index dc7d2e2826..aa06497727 100644 --- a/meta/lib/oe/cve_check.py +++ b/meta/lib/oe/cve_check.py | |||
| @@ -163,3 +163,13 @@ def cve_check_merge_jsons(output, data): | |||
| 163 | return | 163 | return |
| 164 | 164 | ||
| 165 | output["package"].append(data["package"][0]) | 165 | output["package"].append(data["package"][0]) |
| 166 | |||
| 167 | def update_symlinks(target_path, link_path): | ||
| 168 | """ | ||
| 169 | Update a symbolic link link_path to point to target_path. | ||
| 170 | Remove the link and recreate it if exist and is different. | ||
| 171 | """ | ||
| 172 | if link_path != target_path and os.path.exists(target_path): | ||
| 173 | if os.path.exists(os.path.realpath(link_path)): | ||
| 174 | os.remove(link_path) | ||
| 175 | os.symlink(os.path.basename(target_path), link_path) | ||
