mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: mesa: Fix typo.
The typo caused the configure phase to fail like this:
"configure: error: classic DRI driver '915' does not exist"
This is a followup to commit c5e91014a2
.
* gnu/packages/gl.scm (mesa)[arguments]: Fix typo in #:configure-flags.
This commit is contained in:
parent
4cacd87e4d
commit
38c4ca4141
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ (define-public mesa
|
|||
;; from the default dri drivers
|
||||
,@(match (%current-system)
|
||||
((or "x86_64-linux" "i686-linux")
|
||||
'("--with-dri-drivers=915,i965,nouveau,r200,radeon,swrast"
|
||||
'("--with-dri-drivers=i915,i965,nouveau,r200,radeon,swrast"
|
||||
"--enable-gallium-llvm")) ; default is x86/x86_64 only
|
||||
(_
|
||||
'("--with-dri-drivers=nouveau,r200,radeon,swrast"))))
|
||||
|
|
Loading…
Reference in a new issue