From dbe5065f2166be20e57a24f246a40d50e001a05d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= Date: Sat, 8 Feb 2025 17:09:03 +0100 Subject: [PATCH] support: Always run ldconfig in containered tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is required so the generated ld.so.conf files take effect. Signed-off-by: Andreas K. Hüttel Reviewed-by: Adhemerval Zanella --- support/test-container.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/test-container.c b/support/test-container.c index a641250079..1c40ab377f 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];