From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 23B9DA00BE for ; Tue, 7 Jul 2020 13:32:25 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E55BE1DDFB; Tue, 7 Jul 2020 13:32:24 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id AD9B91DDDB for ; Tue, 7 Jul 2020 13:32:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1594121541; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=0v4z/IalJoaJcVZBebQKPVc+Cag6Z3KbvdEebtFrabc=; b=fchKG9ngFgegv3KjwCuda/zTuTQ/ibttutiPNp3U0IihAL/0SjSMPhwiD7p+RJciRL7obC U+UdYGVGsanrQ2AfaZCTCWnkBcc3uAbLaTUB4wchGbCxscBlf7BoG/aVeNAgdkjiJLVmAy mHycSrjME7DmjzEgw8aDpdCO3/xDqlw= Received: from mail-vk1-f198.google.com (mail-vk1-f198.google.com [209.85.221.198]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-67-pzs95fXNNkS5wuBMz4EbDA-1; Tue, 07 Jul 2020 07:32:18 -0400 X-MC-Unique: pzs95fXNNkS5wuBMz4EbDA-1 Received: by mail-vk1-f198.google.com with SMTP id m1so1852494vkl.11 for ; Tue, 07 Jul 2020 04:32:18 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=0v4z/IalJoaJcVZBebQKPVc+Cag6Z3KbvdEebtFrabc=; b=Hp3xw/Aa18L5JaF8jbJtpMTPW6XIrb6Twq8PBuAfma180jFwJXyjpTTKvs/D1CkydC QqYTwncRqvXIW7ica8xnAUHIdFUoKl7bpHlWoecq1I25Ggw2nhH9gyhKf47jnbr97CdR 8clIUyP0H/88SWzpEn+YSkaCDbR89dlVIexNwfj1zetBthxqfKWBFZOOy9VDaY6u8xmG Nwch7LDgiOce5e2SzihHRTm0fQxzHmQFaHelzHNPfGiUP6VaQo+iJ9c2jsr/7wXVr9dW ssil4WP3G0C6cSSZ0jCeGZR0KqZ1RcEJu/PRERiDqiroTQR6z0Bez6/oDjGdWdQwo97c wiKw== X-Gm-Message-State: AOAM532KyDge+yG8rZoBoEnjoRG9dBiAU+2OCoVZcNqqMb5RqVfgcSxG Uz4G/JpJd5TUFHTVrtfs1tUhKTHINr5a/U0588YJ9y1Jf1cXUtrLDD3fJN0KFX7rKKtImDwONCV heCLFbHaW31ck7ZmatLkmK+c= X-Received: by 2002:a05:6102:249:: with SMTP id a9mr9739121vsq.198.1594121537861; Tue, 07 Jul 2020 04:32:17 -0700 (PDT) X-Google-Smtp-Source: ABdhPJx7WCdMKHFzJr0QxOsnRCLHWeevtJ2AtbAG738WCPNT3Ifg1cWCa6Dm9Y20u7R1uutgXrHu8WgAmdzvj6m13PY= X-Received: by 2002:a05:6102:249:: with SMTP id a9mr9739113vsq.198.1594121537667; Tue, 07 Jul 2020 04:32:17 -0700 (PDT) MIME-Version: 1.0 References: <18f843ba879918cf02416f428bb810e7ea8cde10.1593623742.git.tredaelli@redhat.com> In-Reply-To: <18f843ba879918cf02416f428bb810e7ea8cde10.1593623742.git.tredaelli@redhat.com> From: David Marchand Date: Tue, 7 Jul 2020 13:32:06 +0200 Message-ID: To: Timothy Redaelli Cc: Bruce Richardson , dev , Van Haaren Harry , dpdk stable Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-stable] [PATCH] app/test: fix rpath for drivers in meson build X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Wed, Jul 1, 2020 at 7:26 PM Timothy Redaelli wrote: > This commit fixes the setting of relative rpath on dpdk-test for > drivers ($libdir/dpdk/pmd-$abiver) to the correct absolute rpath > ($prefix$libdir/dpdk/pmd-$abiver) > > Fixes: b5dc795a8a55 ("test: build app with meson as dpdk-test") > Cc: stable@dpdk.org > Signed-off-by: Timothy Redaelli Acked-by: Bruce Richarson Applied, thanks. -- David Marchand