From patchwork Tue Jul 3 16:16:45 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emma Kenny X-Patchwork-Id: 42163 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F18731BE77; Tue, 3 Jul 2018 18:15:32 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id EEA871BE74 for ; Tue, 3 Jul 2018 18:15:31 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Jul 2018 09:15:29 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,304,1526367600"; d="scan'208";a="54148961" Received: from silpixa00399499.ir.intel.com (HELO silpixa00399499.ger.corp.intel.com) ([10.237.222.184]) by orsmga008.jf.intel.com with ESMTP; 03 Jul 2018 09:15:27 -0700 From: Emma Kenny To: dev@dpdk.org Cc: anatoly.burakov@intel.com, ferruh.yigit@intel.com, Emma Kenny Date: Tue, 3 Jul 2018 17:16:45 +0100 Message-Id: <20180703161645.23690-1-emma.kenny@intel.com> X-Mailer: git-send-email 2.9.5 In-Reply-To: <20180703085729.21628-1-emma.kenny@intel.com> References: <20180703085729.21628-1-emma.kenny@intel.com> Subject: [dpdk-dev] [PATCH v2] examples/multi_process: add l2fwd_fork to Makefile 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" l2fwd_fork is not complied by default, this will make it compile Fixes: 95e8005a56e8 ("examples/l2fwd_fork: new app") Signed-off-by: Emma Kenny Acked-by: Ferruh Yigit --- examples/multi_process/Makefile | 1 + 1 file changed, 1 insertion(+) 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