From 18b8774792bb53175e0e6b3b31996cb0edfd8a85 Mon Sep 17 00:00:00 2001 From: VladimirTechMan Date: Sun, 30 Oct 2016 23:09:44 -0700 Subject: [PATCH] Setting PATH so that the 'plistbuddy' utility can be found, in a typical OS X environment Restoring a line from the older version (GYP-days) of the build_ios_libs.sh script: modifying PATH so that the PlistBuddy utility can be successfully found and called, as it normally is not available under the PATH directories in a typical OS X environment (even on developer configs). NOTRY=True BUG=webrtc:6372 Review-Url: https://codereview.webrtc.org/2463623002 Cr-Commit-Position: refs/heads/master@{#14834} --- webrtc/build/ios/build_ios_libs.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webrtc/build/ios/build_ios_libs.sh b/webrtc/build/ios/build_ios_libs.sh index fb4971cf98..94cfe5e173 100755 --- a/webrtc/build/ios/build_ios_libs.sh +++ b/webrtc/build/ios/build_ios_libs.sh @@ -13,6 +13,9 @@ # Exit on errors. set -e +# Environment +export PATH=/usr/libexec:$PATH + SCRIPT_DIR=$(cd $(dirname $0) && pwd) WEBRTC_BASE_DIR=${SCRIPT_DIR}/../../..