From 7ab927f70a693f15b679d033512cb5802fa10c9b Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Fri, 20 Jul 2018 15:13:10 +0100 Subject: [PATCH] eal: fix error message for unsupported platforms 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 259bb4464a..98174476c7 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.20.1