diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2020-01-09 04:08:30 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-01-09 04:56:01 +0300 |
commit | 076fe8462af9354e441886605243d8816be918bc (patch) | |
tree | be1dfe9c03b9461db9468fbd1caa91d483e04c08 /gnu/packages/games.scm | |
parent | d5971d667bdc15bf86bdba80f3a5ad504d96fcf4 (diff) |
gnu: teeworlds: Fix install phase on i386 architecture.
* gnu/packages/games.scm (teeworlds)[arguments]: Fix install phase on i386
architecture.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index dd083259c7..1f6064d082 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/")) |