[Mesa-dev] [PATCH] meson: use correct keyword to fix a meson warning

Eric Engestrom eric.engestrom at intel.com
Thu Aug 2 14:07:54 UTC 2018


On Thursday, 2018-08-02 14:58:07 +0100, Jon Turney wrote:
> With a sufficently recent meson, the following warning is produced:
> 
> WARNING: Passed invalid keyword argument "extra_args".
> WARNING: This will become a hard error in the future.
> 
> It seems that compiler.links(args:) is meant here.
> 
> Signed-off-by: Jon Turney <jon.turney at dronecode.org.uk>

Noticed that warning too, but hadn't looked at what caused it.
Reviewed-and-Tested-by: Eric Engestrom <eric.engestrom at intel.com>

> ---
>  meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meson.build b/meson.build
> index 86a4a4ce6d..cbf88b5013 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -989,7 +989,7 @@ if cc.links('''
>        freelocale(loc);
>        return 0;
>      }''',
> -    extra_args : pre_args,
> +    args : pre_args,
>      name : 'strtod has locale support')
>    pre_args += '-DHAVE_STRTOD_L'
>  endif
> -- 
> 2.17.0
> 
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list