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:
Pierre Neidhardt 2020-06-15 13:01:52 +02:00
parent c33d845cf0
commit c5eb882b3e

View File

@ -95,10 +95,10 @@ tweaking of various Wine settings.")
(build-system copy-build-system) (build-system copy-build-system)
(arguments (arguments
`(#:install-plan `(#:install-plan
`(,,@(if (string=? (or (%current-target-system) (%current-system)) `(,@,(if (string=? (or (%current-target-system) (%current-system))
"x86_64-linux") "x86_64-linux")
''("x64" "share/dxvk/lib") ''("x64" "share/dxvk/lib")
'()) ''())
("x32" ,,(if (string=? (or (%current-target-system) (%current-system)) ("x32" ,,(if (string=? (or (%current-target-system) (%current-system))
"i686-linux") "i686-linux")
"share/dxvk/lib" "share/dxvk/lib"