From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 6307C2B92 for ; Fri, 20 Jul 2018 16:13:23 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Jul 2018 07:13:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,379,1526367600"; d="scan'208";a="66197190" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by FMSMGA003.fm.intel.com with ESMTP; 20 Jul 2018 07:13:12 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Fri, 20 Jul 2018 15:13:10 +0100 Message-Id: <20180720141310.14753-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH] eal: fix error message for unsupported platforms 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: , X-List-Received-Date: Fri, 20 Jul 2018 14:13:23 -0000 When building with meson on e.g. cygwin, the error message about an unsupported platform referenced an unknown variable since "host_machine" was missing an "_". Fixes: 844514c73569 ("eal: build with meson") Signed-off-by: Bruce Richardson --- lib/librte_eal/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/meson.build b/lib/librte_eal/meson.build index 259bb4464..98174476c 100644 --- a/lib/librte_eal/meson.build +++ b/lib/librte_eal/meson.build @@ -18,7 +18,7 @@ elif host_machine.system() == 'freebsd' subdir('bsdapp/eal') else - error('unsupported system type @0@'.format(hostmachine.system())) + error('unsupported system type "@0@"'.format(host_machine.system())) endif version = 7 # the version of the EAL API -- 2.17.0