gnu: teeworlds: Fix install phase on i386 architecture.
* gnu/packages/games.scm (teeworlds)[arguments]: Fix install phase on i386 architecture.master
parent
d5971d667b
commit
076fe8462a
|
@ -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/"))
|
||||
|
|
Reference in New Issue