From 460218d1e419e13db4ad6f66843039f2bce7767c Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Fri, 11 Nov 2022 11:47:44 +0100 Subject: [PATCH] build_library/check_root: Print a target of the dangling symlink --- build_library/check_root | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_library/check_root b/build_library/check_root index 50636f1905..10791a8ecd 100755 --- a/build_library/check_root +++ b/build_library/check_root @@ -301,7 +301,7 @@ def check_symlink(): if os.path.islink(path) and not os.path.exists(path): ok = False - error("broken link: %s", path) + error("broken link: %s -> %s", path, os.readlink(path)) return ok