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 <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org>
This commit is contained in:
parent
d358817671
commit
efa8088663
@ -81,7 +81,7 @@ foreach l:libraries
|
|||||||
foreach d:deps
|
foreach d:deps
|
||||||
if not is_variable('shared_rte_' + d)
|
if not is_variable('shared_rte_' + d)
|
||||||
error('Missing dependency ' + d +
|
error('Missing dependency ' + d +
|
||||||
' for library ' + lib_name)
|
' for library ' + libname)
|
||||||
endif
|
endif
|
||||||
shared_deps += [get_variable('shared_rte_' + d)]
|
shared_deps += [get_variable('shared_rte_' + d)]
|
||||||
static_deps += [get_variable('static_rte_' + d)]
|
static_deps += [get_variable('static_rte_' + d)]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user