diff options
| -rwxr-xr-x | build.sh | 2 | ||||
| -rwxr-xr-x | get_libwallet_api.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -30,7 +30,7 @@ fi # Platform indepenent settings platform=$(get_platform) -if [ "$platform" == "linux" ]; then +if [ "$platform" == "linux32" ] || [ "$platform" == "linux64" ]; then distro=$(lsb_release -is) if [ "$distro" == "Ubuntu" ]; then CONFIG="$CONFIG libunwind_off" diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh index 9c5ef3f7..717b1f3a 100755 --- a/get_libwallet_api.sh +++ b/get_libwallet_api.sh @@ -96,7 +96,7 @@ fi # since filename conflict (random.c.obj) # for Linux, we use libunbound shipped with the system, so we don't need to build it -if [ "$platform" != "linux" ]; then +if [ "$platform" != "linux32" ] && [ "$platform" != "linux64" ]; then echo "Building libunbound..." pushd $MONERO_DIR/build/release/external/unbound # no need to make, it was already built as dependency for libwallet |
