aboutsummaryrefslogtreecommitdiff
path: root/utils.sh
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2016-12-21 07:23:05 +0100
committerJaquee <jaquee.monero@gmail.com>2016-12-21 07:23:05 +0100
commit2788b8a7763b0a1b02807eddb2af8b0e6a73d807 (patch)
treeb8b299dd8b4180242311156dc412d47b37e7a1fd /utils.sh
parent4713228d96c5216e703b2b79e3724f645d5c6ad0 (diff)
downloadmonzero-gui-2788b8a7763b0a1b02807eddb2af8b0e6a73d807.tar.gz
monzero-gui-2788b8a7763b0a1b02807eddb2af8b0e6a73d807.tar.xz
monzero-gui-2788b8a7763b0a1b02807eddb2af8b0e6a73d807.zip
Fix libwallet arm7 build
Diffstat (limited to 'utils.sh')
-rwxr-xr-xutils.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils.sh b/utils.sh
index f04a485c..500e99f0 100755
--- a/utils.sh
+++ b/utils.sh
@@ -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"