From 33f00e1272cdc4cfd9d434290bf0a96745e5741c Mon Sep 17 00:00:00 2001 From: tkchin Date: Thu, 4 Aug 2016 12:46:46 -0700 Subject: [PATCH] Fix case-sensitive build system errors. This is https://codereview.webrtc.org/2141093002/, just wanted to get it in. NOTRY=True BUG= Review-Url: https://codereview.webrtc.org/2214113002 Cr-Commit-Position: refs/heads/master@{#13649} --- webrtc/build/ios/build_ios_libs.sh | 4 ++-- .../{RTCICECandidate+JSON.h => RTCIceCandidate+JSON.h} | 0 .../{RTCICECandidate+JSON.m => RTCIceCandidate+JSON.m} | 0 .../AppRTCDemo/{RTCICEServer+JSON.h => RTCIceServer+JSON.h} | 0 .../AppRTCDemo/{RTCICEServer+JSON.m => RTCIceServer+JSON.m} | 0 5 files changed, 2 insertions(+), 2 deletions(-) rename webrtc/examples/objc/AppRTCDemo/{RTCICECandidate+JSON.h => RTCIceCandidate+JSON.h} (100%) rename webrtc/examples/objc/AppRTCDemo/{RTCICECandidate+JSON.m => RTCIceCandidate+JSON.m} (100%) rename webrtc/examples/objc/AppRTCDemo/{RTCICEServer+JSON.h => RTCIceServer+JSON.h} (100%) rename webrtc/examples/objc/AppRTCDemo/{RTCICEServer+JSON.m => RTCIceServer+JSON.m} (100%) diff --git a/webrtc/build/ios/build_ios_libs.sh b/webrtc/build/ios/build_ios_libs.sh index c368715254..a0a0b6dfad 100755 --- a/webrtc/build/ios/build_ios_libs.sh +++ b/webrtc/build/ios/build_ios_libs.sh @@ -216,11 +216,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. diff --git a/webrtc/examples/objc/AppRTCDemo/RTCICECandidate+JSON.h b/webrtc/examples/objc/AppRTCDemo/RTCIceCandidate+JSON.h similarity index 100% rename from webrtc/examples/objc/AppRTCDemo/RTCICECandidate+JSON.h rename to webrtc/examples/objc/AppRTCDemo/RTCIceCandidate+JSON.h diff --git a/webrtc/examples/objc/AppRTCDemo/RTCICECandidate+JSON.m b/webrtc/examples/objc/AppRTCDemo/RTCIceCandidate+JSON.m similarity index 100% rename from webrtc/examples/objc/AppRTCDemo/RTCICECandidate+JSON.m rename to webrtc/examples/objc/AppRTCDemo/RTCIceCandidate+JSON.m diff --git a/webrtc/examples/objc/AppRTCDemo/RTCICEServer+JSON.h b/webrtc/examples/objc/AppRTCDemo/RTCIceServer+JSON.h similarity index 100% rename from webrtc/examples/objc/AppRTCDemo/RTCICEServer+JSON.h rename to webrtc/examples/objc/AppRTCDemo/RTCIceServer+JSON.h diff --git a/webrtc/examples/objc/AppRTCDemo/RTCICEServer+JSON.m b/webrtc/examples/objc/AppRTCDemo/RTCIceServer+JSON.m similarity index 100% rename from webrtc/examples/objc/AppRTCDemo/RTCICEServer+JSON.m rename to webrtc/examples/objc/AppRTCDemo/RTCIceServer+JSON.m