me
/
guix
Archived
1
0
Fork 0

gnu: teeworlds: Fix install phase on i386 architecture.

* gnu/packages/games.scm (teeworlds)[arguments]: Fix install phase on i386
architecture.
master
Oleg Pykhalov 2020-01-09 04:08:30 +03:00
parent d5971d667b
commit 076fe8462a
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C
1 changed files with 3 additions and 1 deletions

View File

@ -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/"))