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 C3973A0544; Tue, 7 Jun 2022 13:44:44 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AAD714021D; Tue, 7 Jun 2022 13:44:44 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id E1FA040156 for ; Tue, 7 Jun 2022 13:44:42 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1654602283; x=1686138283; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=DY0LMw5BmaM3XGyoOw2HaCfrqB6MsMPq3/fExbqQLGw=; b=fm4g++AWryvfK8p6a/p1DOT2DyOG07XQqIAwkHoZ4HWw3OQJJ3ALSoeJ HipOMRny7yGl50HlYE20p9pxv6iF9GlSiwydxEf8clBfBT3vQaiwKwLOk et1nHN7vWawJ5OhqRg/6Pzy/uBNTsN2aiBWl7nIc8J+ysgkVsJM0ZmT1Y mMtVU3M0nnRYFm3Y56wYZLnL7z0imWTFGMIrLGZ8P6ark78R+YihKHO+T Qp7sZLRhcrqS0bZ2eJAmZLIrsuEuM93H/GClVGEagiR6Ly60dpRukKAQL vZa6tD/kXeIalFyPbRwh/5Kd7L60GCAOMx5bBiEVjr4HIpu//5c/2TzFk w==; X-IronPort-AV: E=McAfee;i="6400,9594,10370"; a="275493644" X-IronPort-AV: E=Sophos;i="5.91,283,1647327600"; d="scan'208";a="275493644" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jun 2022 04:44:41 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,283,1647327600"; d="scan'208";a="609181301" Received: from silpixa00399499.ir.intel.com (HELO silpixa00399499.ger.corp.intel.com) ([10.237.223.138]) by orsmga008.jf.intel.com with ESMTP; 07 Jun 2022 04:44:40 -0700 From: Herakliusz Lipiec To: maxime.coquelin@redhat.com, chenbo.xia@intel.com, bruce.richardson@intel.com Cc: dev@dpdk.org, Herakliusz Lipiec Subject: [PATCH 1/3] examples/vhost: update makefile to match meson build system Date: Tue, 7 Jun 2022 12:48:54 +0100 Message-Id: <20220607114856.1085803-1-herakliusz.lipiec@intel.com> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 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 -- 2.36.1