From patchwork Sun Feb 9 18:01:41 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 1235500 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-109298-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha1 header.s=default header.b=GX7ovn/v; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48Fxgm2tQfz9sPF for ; Mon, 10 Feb 2020 05:01:56 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; q=dns; s= default; b=BJyQ+Q6crB7i0giKK3xyaulxm0lafXIz41ux5yHKPMUXZ2qqDiM9W xlhsUmg/jU3QnjTnktcc1kI0CyZNgoZCNLKZMxnWievaoDY2qQ33fDZlH+bSl2NO wJ3+oYZJf8R2/UYU8fx0XRXg0+Fe01c3p74bwE1VOtoBvxePy5tYeo= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; s=default; bh=JmeXPfSJVgRSkvtJovz6TMhhhjg=; b=GX7ovn/vrtr86Hymuxh5iRCldLap mAHM0t9REBWCx9MPD/Qex2PzUAaqGyInsGQ+eMKlgBozv58XVwVGGnLGOFBzlClV uGd/b7qeoP0OTTe3jzyjcfeLWplxwDbh+dW+WstAXpDFjr/TSpvC2fN3PQnhZQjQ dgmcK7gJeae8Ncw= Received: (qmail 114518 invoked by alias); 9 Feb 2020 18:01:49 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 114444 invoked by uid 89); 9 Feb 2020 18:01:48 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_NEUTRAL autolearn=ham version=3.3.1 spammy=HContent-Transfer-Encoding:8bit X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault , commit-hurd@gnu.org Subject: [hurd,commited 2/2] htl: Fix linking static testcases Date: Sun, 9 Feb 2020 19:01:41 +0100 Message-Id: <20200209180141.289076-2-samuel.thibault@ens-lyon.org> In-Reply-To: <20200209180141.289076-1-samuel.thibault@ens-lyon.org> References: <20200209180141.289076-1-samuel.thibault@ens-lyon.org> MIME-Version: 1.0 They need libpthread.a --- htl/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htl/Makefile b/htl/Makefile index 71b14d5e96..bb9ef5deba 100644 --- a/htl/Makefile +++ b/htl/Makefile @@ -207,3 +207,5 @@ $(addprefix $(objpfx), \ $(tests-nolibpthread), \ $(tests) $(xtests) $(test-srcs))): $(objpfx)libpthread.so endif + +$(addprefix $(objpfx),$(tests-static) $(xtests-static)): $(objpfx)libpthread.a