Fix tst-glibc-hwcaps-prepend-cache with custom configure prefix value
authorRomain Geissler <romain.geissler@gmail.com>
Sun, 26 Mar 2023 20:00:16 +0000 (20:00 +0000)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Mon, 27 Mar 2023 19:58:08 +0000 (16:58 -0300)
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
elf/tst-glibc-hwcaps-prepend-cache.c

index 2a44842..fe074b2 100644 (file)
@@ -44,9 +44,13 @@ do_test (void)
   if (dlopen (SONAME, RTLD_NOW) != NULL)
     FAIL_EXIT1 (SONAME " is already on the search path");
 
-  /* Install the default implementation of libmarkermod1.so.  */
-  xmkdirp ("/etc", 0777);
-  support_write_file_string ("/etc/ld.so.conf", "/glibc-test/lib\n");
+  {
+    /* Install the default implementation of libmarkermod1.so.  */
+    char *conf_path = xasprintf ("%s/ld.so.conf", support_sysconfdir_prefix);
+    xmkdirp (support_sysconfdir_prefix, 0777);
+    support_write_file_string (conf_path, "/glibc-test/lib\n");
+    free (conf_path);
+  }
   xmkdirp ("/glibc-test/lib/glibc-hwcaps/prepend2", 0777);
   xmkdirp ("/glibc-test/lib/glibc-hwcaps/prepend3", 0777);
   {