From c5eb882b3efc2dc2d709f84d152102a1d48e82cd Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Mon, 15 Jun 2020 13:01:52 +0200 Subject: gnu: dxvk: Fix wrongly quoted expression. * nongnu/packages/wine.scm (dxvk)[arguments]: Reverse ,@ and fix missing quote for i686-linux. --- nongnu/packages/wine.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nongnu') diff --git a/nongnu/packages/wine.scm b/nongnu/packages/wine.scm index 30d1eb8..da9dc10 100644 --- a/nongnu/packages/wine.scm +++ b/nongnu/packages/wine.scm @@ -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" -- cgit v1.2.3