mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-25 09:58:09 +01:00
gnu: dxvk: Fix wrongly quoted expression.
* nongnu/packages/wine.scm (dxvk)[arguments]: Reverse ,@ and fix missing quote for i686-linux.
This commit is contained in:
parent
c33d845cf0
commit
c5eb882b3e
1 changed files with 4 additions and 4 deletions
|
@ -95,10 +95,10 @@ tweaking of various Wine settings.")
|
|||
(build-system copy-build-system)
|
||||
(arguments
|
||||
`(#:install-plan
|
||||
`(,,@(if (string=? (or (%current-target-system) (%current-system))
|
||||
"x86_64-linux")
|
||||
''("x64" "share/dxvk/lib")
|
||||
'())
|
||||
`(,@,(if (string=? (or (%current-target-system) (%current-system))
|
||||
"x86_64-linux")
|
||||
''("x64" "share/dxvk/lib")
|
||||
''())
|
||||
("x32" ,,(if (string=? (or (%current-target-system) (%current-system))
|
||||
"i686-linux")
|
||||
"share/dxvk/lib"
|
||||
|
|
Loading…
Reference in a new issue