From patchwork Thu Jan 30 16:00:06 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 65366 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 67CB8A0524; Thu, 30 Jan 2020 17:00:34 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3F2981C026; Thu, 30 Jan 2020 17:00:34 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 6ACC31C022 for ; Thu, 30 Jan 2020 17:00:32 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1580400031; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=tI53hqCxl+qze2IVg0G1+cgPFMOlGoHbqBanEqlrDxc=; b=LFJMHMETkARPaA+iMkzETUt/ZPBSxIcSqr7Vz/9/BBtKQjmHoonTM/kT2vJFuJdM2lV6Pa tje8g62iE/O8ltHCzH2I86xS+XUYZoKtcY38aH0oIrHiOGQ9jjpvazQpvNmXA/NyCAmiH+ DhFo7RcopjjEGRjGXsQRLaqeswUIq40= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-373-9akR-yTwOumcijMZGa1mow-1; Thu, 30 Jan 2020 11:00:30 -0500 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 8C3C5801E6D; Thu, 30 Jan 2020 16:00:27 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-128.brq.redhat.com [10.40.204.128]) by smtp.corp.redhat.com (Postfix) with ESMTP id AFAFE10018FF; Thu, 30 Jan 2020 16:00:22 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, bruce.richardson@intel.com, kevin.laatz@intel.com, aconole@redhat.com, nhorman@tuxdriver.com, akhil.goyal@nxp.com, anoobj@marvell.com, bluca@debian.org, fiona.trahe@intel.com, ferruh.yigit@intel.com, stable@dpdk.org, Yipeng Wang , Sameh Gobriel , Harry van Haaren , Luca Boccassi , Keith Wiles Date: Thu, 30 Jan 2020 17:00:06 +0100 Message-Id: <20200130160009.6549-2-david.marchand@redhat.com> In-Reply-To: <20200130160009.6549-1-david.marchand@redhat.com> References: <20191220152058.10739-1-david.marchand@redhat.com> <20200130160009.6549-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-MC-Unique: 9akR-yTwOumcijMZGa1mow-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Subject: [dpdk-dev] [PATCH v3 1/4] hash: fix meson headers packaging X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Those headers are internal and should not be distributed. Fixes: 5b9656b157d3 ("lib: build with meson") Cc: stable@dpdk.org Signed-off-by: David Marchand Acked-by: Luca Boccassi --- lib/librte_hash/meson.build | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/librte_hash/meson.build b/lib/librte_hash/meson.build index 5d02b3084..bce11ad9e 100644 --- a/lib/librte_hash/meson.build +++ b/lib/librte_hash/meson.build @@ -1,10 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -headers = files('rte_cmp_arm64.h', - 'rte_cmp_x86.h', - 'rte_crc_arm64.h', - 'rte_cuckoo_hash.h', +headers = files('rte_crc_arm64.h', 'rte_fbk_hash.h', 'rte_hash_crc.h', 'rte_hash.h',