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 <bruce.richard...@intel.com> --- 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