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 @@ settings.link.libs:Add(\"wavpack\")")
|
||||||
(let* ((arch ,(system->linux-architecture
|
(let* ((arch ,(system->linux-architecture
|
||||||
(or (%current-target-system)
|
(or (%current-target-system)
|
||||||
(%current-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/"))
|
(data-built (string-append build "data/"))
|
||||||
(out (assoc-ref outputs "out"))
|
(out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin/"))
|
(bin (string-append out "/bin/"))
|
||||||
|
|
|
||||||
Reference in a new issue