ipsec: fix missing ipsec headers after install

Message ID 20190508121212.15940-1-marcinx.smoczynski@intel.com (mailing list archive)
State Accepted, archived
Delegated to: akhil goyal
Headers
Series ipsec: fix missing ipsec headers after install |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/mellanox-Performance-Testing success Performance Testing PASS
ci/intel-Performance-Testing success Performance Testing PASS
ci/Intel-compilation success Compilation OK

Commit Message

Marcin Smoczynski May 8, 2019, 12:12 p.m. UTC
  Invalid statement is used to indicate header files to install.

Fixed the statement and reformatted recipe file.

Signed-off-by: Marcin Smoczynski <marcinx.smoczynski@intel.com>
---
 lib/librte_ipsec/meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

Bruce Richardson May 8, 2019, 12:22 p.m. UTC | #1
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 <marcinx.smoczynski@intel.com>
> ---
>  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 <bruce.richardson@intel.com>
  
Thomas Monjalon May 9, 2019, 1:22 p.m. UTC | #2
08/05/2019 14:22, Bruce Richardson:
> 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 <marcinx.smoczynski@intel.com>
> 
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>

Applied, thanks
  

Patch

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']