diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-09-09 21:10:23 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2024-09-09 21:10:23 +0200 |
commit | e82a7cb1622bff08d8e3a144d7c5516a088f1cbc (patch) | |
tree | d43d796fe96a55ef003db5ad5136c9e70b22ff52 | |
parent | dccc9a5161264d2f98411c24ae22495ca3a09b60 (diff) | |
download | glibc-e82a7cb1622bff08d8e3a144d7c5516a088f1cbc.zip glibc-e82a7cb1622bff08d8e3a144d7c5516a088f1cbc.tar.gz glibc-e82a7cb1622bff08d8e3a144d7c5516a088f1cbc.tar.bz2 |
elf: Fix tst-dlopen-tlsreinit1.out test dependency
Fixes commit 5097cd344fd243fb8deb6dec96e8073753f962f9
("elf: Avoid re-initializing already allocated TLS in dlopen
(bug 31717)").
Reported-by: Patsy Griffin <patsy@redhat.com>
Reviewed-by: Patsy Griffin <patsy@redhat.com>
-rw-r--r-- | elf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index 00622ac..9ea4baf 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -3145,7 +3145,7 @@ $(objpfx)tst-dlopen-tlsreinit4: \ # tst-dlopen-tlsreinitmod3.so. The dependency is provided via # $(objpfx)tst-dlopen-tlsreinitmod1.so. tst-dlopen-tlsreinitmod2.so-no-z-defs = yes -$(objpfx)tst-dlopen-tlsreinit.out: $(objpfx)tst-dlopen-tlsreinitmod1.so \ +$(objpfx)tst-dlopen-tlsreinit1.out: $(objpfx)tst-dlopen-tlsreinitmod1.so \ $(objpfx)tst-dlopen-tlsreinitmod2.so $(objpfx)tst-dlopen-tlsreinitmod3.so # Reuse an audit module which provides ample debug logging. $(objpfx)tst-dlopen-tlsreinit3.out: $(objpfx)tst-auditmod1.so |