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-07-09 15:46:17 +0200 |
commit | dbe5065f2166be20e57a24f246a40d50e001a05d (patch) | |
tree | 8422ee3e46f85e4eaf5ac024498c122c470b19cd | |
parent | ae589cb84df10825fc545a45c7007a5f79409bf1 (diff) | |
download | glibc-dbe5065f2166be20e57a24f246a40d50e001a05d.zip glibc-dbe5065f2166be20e57a24f246a40d50e001a05d.tar.gz glibc-dbe5065f2166be20e57a24f246a40d50e001a05d.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]; |