* [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install
@ 2019-05-08 12:12 Marcin Smoczynski
2019-05-08 12:12 ` Marcin Smoczynski
2019-05-08 12:22 ` Bruce Richardson
0 siblings, 2 replies; 6+ messages in thread
From: Marcin Smoczynski @ 2019-05-08 12:12 UTC (permalink / raw)
To: konstantin.ananyev; +Cc: dev, Marcin Smoczynski
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']
--
2.21.0.windows.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install
2019-05-08 12:12 [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install Marcin Smoczynski
@ 2019-05-08 12:12 ` Marcin Smoczynski
2019-05-08 12:22 ` Bruce Richardson
1 sibling, 0 replies; 6+ messages in thread
From: Marcin Smoczynski @ 2019-05-08 12:12 UTC (permalink / raw)
To: konstantin.ananyev; +Cc: dev, Marcin Smoczynski
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']
--
2.21.0.windows.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install
2019-05-08 12:12 [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install Marcin Smoczynski
2019-05-08 12:12 ` Marcin Smoczynski
@ 2019-05-08 12:22 ` Bruce Richardson
2019-05-08 12:22 ` Bruce Richardson
2019-05-09 13:22 ` Thomas Monjalon
1 sibling, 2 replies; 6+ messages in thread
From: Bruce Richardson @ 2019-05-08 12:22 UTC (permalink / raw)
To: Marcin Smoczynski; +Cc: konstantin.ananyev, dev
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>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install
2019-05-08 12:22 ` Bruce Richardson
@ 2019-05-08 12:22 ` Bruce Richardson
2019-05-09 13:22 ` Thomas Monjalon
1 sibling, 0 replies; 6+ messages in thread
From: Bruce Richardson @ 2019-05-08 12:22 UTC (permalink / raw)
To: Marcin Smoczynski; +Cc: konstantin.ananyev, dev
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>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install
2019-05-08 12:22 ` Bruce Richardson
2019-05-08 12:22 ` Bruce Richardson
@ 2019-05-09 13:22 ` Thomas Monjalon
2019-05-09 13:22 ` Thomas Monjalon
1 sibling, 1 reply; 6+ messages in thread
From: Thomas Monjalon @ 2019-05-09 13:22 UTC (permalink / raw)
To: Marcin Smoczynski; +Cc: dev, Bruce Richardson, konstantin.ananyev
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
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install
2019-05-09 13:22 ` Thomas Monjalon
@ 2019-05-09 13:22 ` Thomas Monjalon
0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2019-05-09 13:22 UTC (permalink / raw)
To: Marcin Smoczynski; +Cc: dev, Bruce Richardson, konstantin.ananyev
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
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-05-09 13:22 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-08 12:12 [dpdk-dev] [PATCH] ipsec: fix missing ipsec headers after install Marcin Smoczynski
2019-05-08 12:12 ` Marcin Smoczynski
2019-05-08 12:22 ` Bruce Richardson
2019-05-08 12:22 ` Bruce Richardson
2019-05-09 13:22 ` Thomas Monjalon
2019-05-09 13:22 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).