diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2025-02-08 17:09:03 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2025-06-23 13:28:17 +0200 |
commit | 99b0c9d3154a053008d78939ff9cd2a17cb8bdd3 (patch) | |
tree | 725c1f51951885d424487dae2b80bf15d01d01f1 | |
parent | 518b31f63fe2c3ef093a17b3ee9f9bcb87615027 (diff) | |
download | glibc-99b0c9d3154a053008d78939ff9cd2a17cb8bdd3.zip glibc-99b0c9d3154a053008d78939ff9cd2a17cb8bdd3.tar.gz glibc-99b0c9d3154a053008d78939ff9cd2a17cb8bdd3.tar.bz2 |
support: Always run ldconfig in containered tests
This is required so the generated ld.so.conf files take effect.
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
-rw-r--r-- | support/test-container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/test-container.c b/support/test-container.c index a641250..1c40ab3 100644 --- a/support/test-container.c +++ b/support/test-container.c @@ -740,7 +740,7 @@ main (int argc, char **argv) char *command_basename; char *so_base; int do_postclean = 0; - bool do_ldconfig = false; + bool do_ldconfig = true; char *change_cwd = NULL; int pipes[2]; |