Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: webrtc/build/ios/build_ios_libs.sh

Issue 2141093002: Fixed ios build on case sensitivity file system (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase to master Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/examples/objc/AppRTCDemo/RTCICECandidate+JSON.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/build/ios/build_ios_libs.sh
diff --git a/webrtc/build/ios/build_ios_libs.sh b/webrtc/build/ios/build_ios_libs.sh
index 772fc6824e487b4e62c6ce71ce5b64f2c7088d93..b7ec0adeac56937ce398ead3f198c3062976a886 100755
--- a/webrtc/build/ios/build_ios_libs.sh
+++ b/webrtc/build/ios/build_ios_libs.sh
@@ -211,11 +211,11 @@ if [[ ${BUILD_TYPE} = "framework" ]]; then
# Modify the version number.
INFOPLIST_PATH=${OUTPUT_DIR}/WebRTC.framework/Info.plist
- MAJOR_MINOR=$(plistbuddy -c "Print :CFBundleShortVersionString" \
+ MAJOR_MINOR=$(PlistBuddy -c "Print :CFBundleShortVersionString" \
${INFOPLIST_PATH})
VERSION_NUMBER="${MAJOR_MINOR}.${POINT_VERSION}"
echo "Substituting revision number: ${VERSION_NUMBER}"
- plistbuddy -c "Set :CFBundleVersion ${VERSION_NUMBER}" ${INFOPLIST_PATH}
+ PlistBuddy -c "Set :CFBundleVersion ${VERSION_NUMBER}" ${INFOPLIST_PATH}
plutil -convert binary1 ${INFOPLIST_PATH}
# Copy pod file.
« no previous file with comments | « no previous file | webrtc/examples/objc/AppRTCDemo/RTCICECandidate+JSON.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698