From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 08CCBA328D for ; Tue, 22 Oct 2019 17:44:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6A38E1BF4F; Tue, 22 Oct 2019 17:43:46 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 9B1DD1BEF8 for ; Tue, 22 Oct 2019 17:43:24 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Oct 2019 08:43:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,216,1569308400"; d="scan'208";a="200824109" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.2]) by orsmga003.jf.intel.com with ESMTP; 22 Oct 2019 08:43:23 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Tue, 22 Oct 2019 16:43:10 +0100 Message-Id: <20191022154310.41238-10-bruce.richardson@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20191022154310.41238-1-bruce.richardson@intel.com> References: <20191014113448.7442-1-bruce.richardson@intel.com> <20191022154310.41238-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v3 9/9] examples/guest_cli: add power manager guest cli to meson 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" Signed-off-by: Bruce Richardson --- examples/meson.build | 1 + examples/vm_power_manager/guest_cli/meson.build | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/examples/meson.build b/examples/meson.build index 8a15dafcf..5a235545a 100644 --- a/examples/meson.build +++ b/examples/meson.build @@ -43,6 +43,7 @@ all_examples = [ 'timer', 'vdpa', 'vhost', 'vhost_crypto', 'vhost_scsi', 'vm_power_manager', + 'vm_power_manager/guest_cli', 'vmdq', 'vmdq_dcb', ] # install all example code on install - irrespective of whether the example in diff --git a/examples/vm_power_manager/guest_cli/meson.build b/examples/vm_power_manager/guest_cli/meson.build index 38bd8d837..2b490424f 100644 --- a/examples/vm_power_manager/guest_cli/meson.build +++ b/examples/vm_power_manager/guest_cli/meson.build @@ -6,10 +6,6 @@ # To build this example as a standalone application with an already-installed # DPDK instance, use 'make' -# Setting the name here because the default name will conflict with the -# vm_power_manager app because of the way the directories are parsed. -name = 'guest_cli' - if not dpdk_conf.has('RTE_LIBRTE_POWER') build = false subdir_done() -- 2.21.0