From: Bruce Richardson Date: Thu, 10 Jan 2019 10:29:19 +0000 (+0000) Subject: build: fix variable name in dependency error message X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=efa8088663e3917780f9cb257f2366743e9bfe2f;p=dpdk.git build: fix variable name in dependency error message The variable name in the error message had an extra '_' which caused an actual meson error when the message would otherwise be printed to give meaningful information about what was going wrong. Fixes: 203b61dc5e18 ("build: improve error message for missing dependency") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Acked-by: Luca Boccassi --- diff --git a/lib/meson.build b/lib/meson.build index 179c2ef378..e8b40f5461 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -81,7 +81,7 @@ foreach l:libraries foreach d:deps if not is_variable('shared_rte_' + d) error('Missing dependency ' + d + - ' for library ' + lib_name) + ' for library ' + libname) endif shared_deps += [get_variable('shared_rte_' + d)] static_deps += [get_variable('static_rte_' + d)]