From: Arsen Arsenović Date: Tue, 7 Mar 2023 10:29:35 +0000 (+0100) Subject: elf: Add missing dependency between resolvfail and testobj1.so X-Git-Tag: glibc-2.38~485 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=f7e751affbedf67e16ef97e9da430bd67d793891;p=glibc.git elf: Add missing dependency between resolvfail and testobj1.so It was possible to run this test individually and have it fail because it can't find testobj1.so. This patch adds that dependency, to prevent such issues. Reviewed-by: Florian Weimer --- diff --git a/elf/Makefile b/elf/Makefile index e5df78fd04..4d0e04b2a2 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1631,6 +1631,7 @@ $(objpfx)multiload.out: $(objpfx)testobj1.so LDFLAGS-origtest = -rdynamic $(objpfx)origtest.out: $(objpfx)testobj1.so +$(objpfx)resolvfail.out: $(objpfx)testobj1.so ifeq ($(have-thread-library),yes) $(objpfx)resolvfail: $(shared-thread-library) endif