From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E70C6A0553; Fri, 10 Jun 2022 14:05:35 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 870FA4069C; Fri, 10 Jun 2022 14:05:35 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id AC62640689 for ; Fri, 10 Jun 2022 14:05:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1654862733; x=1686398733; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=sJWC5088TNqSpF/GQwm+4qB7dp07N4zfpU56GoTtL/A=; b=AiSkfJeVjpLsywNO78PJTzJtNfLM4V/3U9RAb9JFiS4S4nJ4nNd4ATo5 7H1eRU8ZOmIOUib93Bf+CintQvHoNW1RY4rTEzesvxTiYTliZPUjg0q0m gV5YKPUaayvMXpMAIefzMsnSpS9aQvZm/l5x+U8cxlvPhuZy5/8Sey4PA AgOuc2T53W1MEZ2WVs/ONYITd9Q+eFuoSSReijaUkZTrLMsI0sc5Cbskz YXD0IFc7Znt28XfyMQuBASbh8x05tdIRMXqHx2vtLLn4HXaRaeZBks1Zd zDlJ2Vz2pvIJUzJw4yHRyEuLti4qhzX93PVxO5pQCPku9pHj1oNhOyM6+ A==; X-IronPort-AV: E=McAfee;i="6400,9594,10373"; a="275141958" X-IronPort-AV: E=Sophos;i="5.91,290,1647327600"; d="scan'208";a="275141958" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jun 2022 05:05:16 -0700 X-IronPort-AV: E=Sophos;i="5.91,290,1647327600"; d="scan'208";a="586182301" Received: from bricha3-mobl.ger.corp.intel.com ([10.55.133.106]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 10 Jun 2022 05:05:15 -0700 Date: Fri, 10 Jun 2022 13:05:12 +0100 From: Bruce Richardson To: Herakliusz Lipiec Cc: maxime.coquelin@redhat.com, chenbo.xia@intel.com, dev@dpdk.org Subject: Re: [PATCH 1/3] examples/vhost: update makefile to match meson build system Message-ID: References: <20220607114856.1085803-1-herakliusz.lipiec@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220607114856.1085803-1-herakliusz.lipiec@intel.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Tue, Jun 07, 2022 at 12:48:54PM +0100, Herakliusz Lipiec wrote: > Meson build system creates a vhost binary but Makefile > and docs reference same as vhost-switch. Updating makefile > to match meson. > > Signed-off-by: Herakliusz Lipiec > --- > examples/vhost/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/examples/vhost/Makefile b/examples/vhost/Makefile > index 975a5dfe40..ea64f02bb0 100644 > --- a/examples/vhost/Makefile > +++ b/examples/vhost/Makefile > @@ -2,7 +2,7 @@ > # Copyright(c) 2010-2014 Intel Corporation > > # binary name > -APP = vhost-switch > +APP = dpdk-vhost > > # all source are stored in SRCS-y > SRCS-y := main.c virtio_net.c > -- While I see the docs are updated in the next patch, I think it would be good to have the doc binary renames included here for completeness. With this addition: Acked-by: Bruce Richardson