[PATCH] elf: Do not print the cache entry if --inhibit-cache is used
Adhemerval Zanella
adhemerval.zanella@linaro.org
Tue Oct 17 14:50:35 GMT 2023
So --help informs the correct shared library search path.
---
elf/dl-usage.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/elf/dl-usage.c b/elf/dl-usage.c
index 98f0b0d027..04315451f2 100644
--- a/elf/dl-usage.c
+++ b/elf/dl-usage.c
@@ -99,7 +99,8 @@ print_search_path_for_help (struct dl_main_state *state)
if (map != NULL)
print_search_path_for_help_1 (map->l_runpath_dirs.dirs);
- _dl_printf (" (libraries located via %s)\n", LD_SO_CACHE);
+ if (!GLRO(dl_inhibit_cache))
+ _dl_printf (" (libraries located via %s)\n", LD_SO_CACHE);
print_search_path_for_help_1 (__rtld_search_dirs.dirs);
}
--
2.34.1
More information about the Libc-alpha
mailing list