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 DE25CA04C0 for ; Thu, 17 Sep 2020 17:09:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D6B071BFCF; Thu, 17 Sep 2020 17:09:34 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id E17951D68E for ; Thu, 17 Sep 2020 17:09:32 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1600355372; 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; bh=GuZa8n5eZ074OEca7rrtSq+swy7MoUj0pQZyczgQt6s=; b=WbFcOp4YD2xi3JLASgEkQnMqGRR1fiaa0UCCfP5P5oKPLipi0+BgDyuWNdxBI5keN7N/br ts+DSfDP/1UTE5I+TucTrjKV1kA7LT6dKAYQ8l0M38D7OwR9JVUadaeNP2D2mXNovQ6lfz rNqUeyYxmc7OYjPWyLxc/CYH9a5daU0= 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-382-ItB3Z6qCOFOuuBfLW3kh_w-1; Thu, 17 Sep 2020 11:09:29 -0400 X-MC-Unique: ItB3Z6qCOFOuuBfLW3kh_w-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 630B864092; Thu, 17 Sep 2020 15:09:28 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.44]) by smtp.corp.redhat.com (Postfix) with ESMTP id 88BFB6886B; Thu, 17 Sep 2020 15:09:26 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Fan Zhang , Luca Boccassi Date: Thu, 17 Sep 2020 17:09:17 +0200 Message-Id: <20200917150917.22945-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH] crypto/scheduler: fix header install with meson 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" The headers variable is only used in lib/meson.build context. For drivers, an explicit install_headers() is necessary. Reproduced while compiling the l2fwd-crypto example out of meson (which can be done by adding it in devtools/test-meson-builds.sh examples build test). Fixes: cd2b6458a1cb ("crypto/scheduler: add in meson build") Cc: stable@dpdk.org Signed-off-by: David Marchand --- drivers/crypto/scheduler/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/scheduler/meson.build b/drivers/crypto/scheduler/meson.build index c5ba2d6804..cb0f3a8ba9 100644 --- a/drivers/crypto/scheduler/meson.build +++ b/drivers/crypto/scheduler/meson.build @@ -13,7 +13,7 @@ sources = files( 'scheduler_roundrobin.c', ) -headers = files( +install_headers( 'rte_cryptodev_scheduler.h', 'rte_cryptodev_scheduler_operations.h', ) -- 2.23.0