From 1050686afe2a2e77e2bbb7780e1bd5f81f1aa0d5 Mon Sep 17 00:00:00 2001 From: Mike Lothian Date: Tue, 7 Dec 2021 15:40:38 +0000 Subject: [PATCH] meson: Fix dri.pc dridriverdir Change dridriversdir to dridriverdir Fixes: https://gitlab.freedesktop.org/mesa/mesa/-/commit/3ae3569d822c2546c4c748090f8a6c8016f763ea Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/5726 Signed-off-by: Mike Lothian Reviewed-by: Lionel Landwerlin Tested-by: Marcus Seyfarth Part-of: --- src/gallium/frontends/dri/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/frontends/dri/meson.build b/src/gallium/frontends/dri/meson.build index 482031c0739..a0ae961c5fc 100644 --- a/src/gallium/frontends/dri/meson.build +++ b/src/gallium/frontends/dri/meson.build @@ -76,7 +76,7 @@ if with_dri filebase : 'dri', description : 'Direct Rendering Infastructure', version : meson.project_version(), - variables : ['dridriversdir=@0@'.format(dri_drivers_path)], + variables : ['dridriverdir=@0@'.format(dri_drivers_path)], requires_private : dri_req_private, ) endif