[dpdk-dev] [dpdk-stable] [PATCH] build: fix incorrect variable name in error message

Luca Boccassi bluca at debian.org
Thu Jan 10 14:10:22 CET 2019


On Thu, 2019-01-10 at 10:29 +0000, Bruce Richardson wrote:
> 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 at dpdk.org
> 
> Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
> ---
>  lib/meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/meson.build b/lib/meson.build
> index a2dd52e17..93d7901d4 100644
> --- a/lib/meson.build
> +++ b/lib/meson.build
> @@ -79,7 +79,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)]

Acked-by: Luca Boccassi <bluca at debian.org>

-- 
Kind regards,
Luca Boccassi


More information about the dev mailing list