diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2016-12-21 07:23:05 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2016-12-21 07:23:05 +0100 |
| commit | 2788b8a7763b0a1b02807eddb2af8b0e6a73d807 (patch) | |
| tree | b8b299dd8b4180242311156dc412d47b37e7a1fd /utils.sh | |
| parent | 4713228d96c5216e703b2b79e3724f645d5c6ad0 (diff) | |
| download | monzero-gui-2788b8a7763b0a1b02807eddb2af8b0e6a73d807.tar.gz monzero-gui-2788b8a7763b0a1b02807eddb2af8b0e6a73d807.tar.xz monzero-gui-2788b8a7763b0a1b02807eddb2af8b0e6a73d807.zip | |
Fix libwallet arm7 build
Diffstat (limited to 'utils.sh')
| -rwxr-xr-x | utils.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -8,8 +8,10 @@ function get_platform { elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then if [ "$(expr substr $(uname -m) 1 6)" == "x86_64" ]; then platform="linux64" - else + elif [ "$(expr substr $(uname -m) 1 4)" == "i686" ]; then platform="linux32" + else + platform="linux" fi elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then platform="mingw64" |
