Merge pull request #318

2788b8a Fix libwallet arm7 build (Jaquee)
This commit is contained in:
Riccardo Spagni
2016-12-21 09:26:32 +02:00
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"