Fix libwallet arm7 build

This commit is contained in:
Jaquee
2016-12-21 07:23:05 +01:00
parent 4713228d96
commit 2788b8a776
2 changed files with 8 additions and 3 deletions

View File

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