Module: Mesa Branch: 18.2 Commit: 4a769c88505b025c31e58daced09301b21902c40 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=4a769c88505b025c31e58daced09301b21902c40
Author: Jon Turney <[email protected]> Date: Thu Aug 2 14:50:27 2018 +0100 meson: use correct keyword to fix a meson warning 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 <[email protected]> Reviewed-and-Tested-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]> (cherry picked from commit a48c0659e12bfb2d715cceca75eff24ae6024bba) --- 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 _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
