guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: gnu: teeworlds: Fix install phase on i386 architecture.


From: guix-commits
Subject: 01/05: gnu: teeworlds: Fix install phase on i386 architecture.
Date: Wed, 8 Jan 2020 21:01:05 -0500 (EST)

wigust pushed a commit to branch master
in repository guix.

commit 076fe8462af9354e441886605243d8816be918bc
Author: Oleg Pykhalov <address@hidden>
AuthorDate: Thu Jan 9 04:08:30 2020 +0300

    gnu: teeworlds: Fix install phase on i386 architecture.
    
    * gnu/packages/games.scm (teeworlds)[arguments]: Fix install phase on i386
    architecture.
---
 gnu/packages/games.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index dd08325..1f6064d 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -4580,7 +4580,9 @@ settings.link.libs:Add(\"wavpack\")")
              (let* ((arch ,(system->linux-architecture
                             (or (%current-target-system)
                                 (%current-system))))
-                    (build (string-append "build/" arch "/release/"))
+                    (build (string-append "build/" (if (string=? arch "i386")
+                                                       "x86" arch)
+                                          "/release/"))
                     (data-built (string-append build "data/"))
                     (out (assoc-ref outputs "out"))
                     (bin (string-append out "/bin/"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]