ipsec: fix headers install
authorMarcin Smoczynski <marcinx.smoczynski@intel.com>
Wed, 8 May 2019 12:12:12 +0000 (14:12 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 9 May 2019 13:21:39 +0000 (15:21 +0200)
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>
lib/librte_ipsec/meson.build

index 18fb2a1..7ea0c7d 100644 (file)
@@ -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']