[v2] examples/multi_process: add l2fwd_fork to Makefile

Message ID 20180703161645.23690-1-emma.kenny@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series [v2] examples/multi_process: add l2fwd_fork to Makefile |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Emma Kenny July 3, 2018, 4:16 p.m. UTC
  l2fwd_fork is not complied by default, this will make it compile

Fixes: 95e8005a56e8 ("examples/l2fwd_fork: new app")

Signed-off-by: Emma Kenny <emma.kenny@intel.com>
---
 examples/multi_process/Makefile | 1 +
 1 file changed, 1 insertion(+)
  

Comments

Ferruh Yigit July 5, 2018, 4:05 p.m. UTC | #1
On 7/3/2018 5:16 PM, Emma Kenny wrote:
> l2fwd_fork is not complied by default, this will make it compile
> 
> Fixes: 95e8005a56e8 ("examples/l2fwd_fork: new app")
> 
> Signed-off-by: Emma Kenny <emma.kenny@intel.com>

Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
  
Thomas Monjalon July 11, 2018, 5:24 p.m. UTC | #2
05/07/2018 18:05, Ferruh Yigit:
> On 7/3/2018 5:16 PM, Emma Kenny wrote:
> > l2fwd_fork is not complied by default, this will make it compile
> > 
> > Fixes: 95e8005a56e8 ("examples/l2fwd_fork: new app")
> > 
> > Signed-off-by: Emma Kenny <emma.kenny@intel.com>
> 
> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied, thanks
  

Patch

diff --git a/examples/multi_process/Makefile b/examples/multi_process/Makefile
index a6708b7..5961d28 100644
--- a/examples/multi_process/Makefile
+++ b/examples/multi_process/Makefile
@@ -13,5 +13,6 @@  include $(RTE_SDK)/mk/rte.vars.mk
 DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += client_server_mp
 DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += simple_mp
 DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += symmetric_mp
+DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += l2fwd_fork
 
 include $(RTE_SDK)/mk/rte.extsubdir.mk