From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id E8556A0096 for ; Wed, 8 May 2019 14:22:19 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C7FE334F0; Wed, 8 May 2019 14:22:18 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 44C092082 for ; Wed, 8 May 2019 14:22:17 +0200 (CEST) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 May 2019 05:22:16 -0700 X-ExtLoop1: 1 Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.96]) by orsmga005.jf.intel.com with SMTP; 08 May 2019 05:22:14 -0700 Received: by (sSMTP sendmail emulation); Wed, 08 May 2019 13:22:13 +0100 Date: Wed, 8 May 2019 13:22:13 +0100 From: Bruce Richardson To: Marcin Smoczynski Cc: konstantin.ananyev@intel.com, dev@dpdk.org Message-ID: <20190508122213.GA53@bricha3-MOBL.ger.corp.intel.com> References: <20190508121212.15940-1-marcinx.smoczynski@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Disposition: inline In-Reply-To: <20190508121212.15940-1-marcinx.smoczynski@intel.com> User-Agent: Mutt/1.11.4 (2019-03-13) Subject: Re: [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install 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" Message-ID: <20190508122213.Nlz1EesVkoZzQQqJ-Vg6AZkMNYFn1q-0GczY5IRF2V8@z> On Wed, May 08, 2019 at 02:12:12PM +0200, Marcin Smoczynski wrote: > Invalid statement is used to indicate header files to install. > > Fixed the statement and reformatted recipe file. > > Signed-off-by: Marcin Smoczynski > --- > lib/librte_ipsec/meson.build | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lib/librte_ipsec/meson.build b/lib/librte_ipsec/meson.build > index 18fb2a143..7ea0c7dbb 100644 > --- a/lib/librte_ipsec/meson.build > +++ b/lib/librte_ipsec/meson.build > @@ -3,8 +3,8 @@ > > allow_experimental_apis = true > > -sources=files('esp_inb.c', 'esp_outb.c', 'sa.c', 'ses.c') > +sources = files('esp_inb.c', 'esp_outb.c', 'sa.c', 'ses.c') > > -install_headers = files('rte_ipsec.h', 'rte_ipsec_group.h', 'rte_ipsec_sa.h') > +headers = files('rte_ipsec.h', 'rte_ipsec_group.h', 'rte_ipsec_sa.h') > > deps += ['mbuf', 'net', 'cryptodev', 'security'] Acked-by: Bruce Richardson