iOS: add PlistBuddy location to path to avoid build errors

On OS X El Capitan, the system location of 'PlistBuddy' is:
"/usr/libexec/PlistBuddy"
and default system path environment variable is:
"PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"

NOTRY=True

Review-Url: https://codereview.webrtc.org/2262813002
Cr-Commit-Position: refs/heads/master@{#13841}
This commit is contained in:
vopatop.skam 2016-08-22 02:27:30 -07:00 committed by Commit bot
parent 94b9199fb1
commit ff101d6171

View File

@ -13,6 +13,9 @@
# Exit on errors.
set -e
# Environment
export PATH=/usr/libexec:$PATH
# Globals.
SCRIPT_DIR=$(cd $(dirname $0) && pwd)
WEBRTC_BASE_DIR=${SCRIPT_DIR}/../../..