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)
(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"