From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id E51C738582A3 for ; Tue, 7 Mar 2023 10:45:14 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E51C738582A3 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= To: libc-alpha@sourceware.org Cc: fweimer@redhat.com, arsen@gentoo.org, carlos@redhat.com, toolchain@gentoo.org Subject: [PATCH v3 2/2] elf: Add missing dependency between resolvfail and testobj1.so Date: Tue, 7 Mar 2023 11:29:35 +0100 Message-Id: <20230307102935.2882450-2-arsen@gentoo.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230307102935.2882450-1-arsen@gentoo.org> References: <20230307102935.2882450-1-arsen@gentoo.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-9.7 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: 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. --- elf/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/elf/Makefile b/elf/Makefile index b9c77604b5..a32618a01f 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1615,6 +1615,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 -- 2.39.2