podiki pushed a commit to branch mesa-updates
in repository guix.

commit 9e597b7681ef6230e841d23097e2d4f102d2343a
Author: Guillaume Le Vaillant <[email protected]>
AuthorDate: Tue Jun 13 13:10:43 2023 +0000

    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 <[email protected]>
---
 gnu/packages/gl.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 9885bde712..a5b5ade22a 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -517,6 +517,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")

Reply via email to