mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: teeworlds: Fix install phase on i386 architecture.
* gnu/packages/games.scm (teeworlds)[arguments]: Fix install phase on i386 architecture.
This commit is contained in:
parent
d5971d667b
commit
076fe8462a
1 changed files with 3 additions and 1 deletions
|
@ -4580,7 +4580,9 @@ (define (use-latest-json-parser file)
|
|||
(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/"))
|
||||
|
|
Loading…
Reference in a new issue