From f4d7610a9b86745277782b0677507486f8e88d66 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Tue, 13 Jun 2023 13:10:43 +0000 Subject: gnu: mesa: Fix VDPAU drivers path. The VDPAU_DRIVER_PATH environment variable must contain only one directory. * gnu/packages/gl.scm (mesa)[native-search-paths]: Fix specification for VDPAU_DRIVER_PATH. Signed-off-by: John Kehayias --- gnu/packages/gl.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 1691086e1a..d42903cc8f 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -518,6 +518,7 @@ svga,swrast,virgl"))) (list (search-path-specification ;; Ensure the Mesa VDPAU drivers can be found. (variable "VDPAU_DRIVER_PATH") + (separator #f) (files '("lib/vdpau"))))) (home-page "https://mesa3d.org/") (synopsis "OpenGL and Vulkan implementations") -- cgit 1.4.1