Update mac acloud prebuilt from sdk_phone_armv7-sdk_mac 5211371

Also remove the run acloud mac script as that's no longer necessary.

Bug: 113557161
Test: acloud create|list|reconnect|delete
Change-Id: I4ce8051648afee365ae6605b2ecbd6705b01c774
diff --git a/acloud/darwin-x86/acloud b/acloud/darwin-x86/acloud
index ff09107..dd29a46 100755
--- a/acloud/darwin-x86/acloud
+++ b/acloud/darwin-x86/acloud
Binary files differ
diff --git a/acloud/darwin-x86/run_acloud_mac.sh b/acloud/darwin-x86/run_acloud_mac.sh
deleted file mode 100755
index 30319bf..0000000
--- a/acloud/darwin-x86/run_acloud_mac.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-# This script will check and setup the mac env to run acloud.
-ACLOUD_BIN=$1
-
-# Install macports python if it's not available.
-if [[ ! -f /opt/local/bin/python2.7 ]]; then
-    echo "acloud requires macports python27, installing now..."
-    if ! POSIXLY_CORRECT=1 sudo /opt/local/bin/port -N install python27; then
-        echo "Failed to install python27, exiting out"
-        exit 1
-    fi
-fi
-
-# Let's use macports python since the builtin python may be too old.
-PATH=/opt/local/bin:$PATH $ACLOUD_BIN "${@:2}"