summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-03-15 09:38:58 -0700
committerMinh Nguyễn <mxn@1ec5.org>2016-03-15 11:08:34 -0700
commit1962fce1de3ea18db14b298e62c932fd13996537 (patch)
treea8fc8511314a76f03e1c4365dd079207ba983f41
parent4681d0b54577715cf1e9fcf33fa483b07b164987 (diff)
downloadqtlocation-mapboxgl-1962fce1de3ea18db14b298e62c932fd13996537.tar.gz
[ios] Copy .der files into static framework
Fixes #4316.
-rwxr-xr-xplatform/ios/scripts/package.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/scripts/package.sh b/platform/ios/scripts/package.sh
index 5d84ba5e27..459de6d100 100755
--- a/platform/ios/scripts/package.sh
+++ b/platform/ios/scripts/package.sh
@@ -210,7 +210,7 @@ else
fi
if [[ ${BUILD_STATIC} == true ]]; then
mkdir -p "${OUTPUT}/static/${NAME}.framework${BUNDLE_PATH}"
- cp -pv platform/ios/resources/* "${OUTPUT}/static/${NAME}.framework${BUNDLE_PATH}"
+ cp -pv platform/{default,ios}/resources/* "${OUTPUT}/static/${NAME}.framework${BUNDLE_PATH}"
INFO_PLIST_PATH="${OUTPUT}/static/${NAME}.framework/Info.plist"
cp -pv platform/ios/framework/Info.plist "${INFO_PLIST_PATH}"
plutil -replace CFBundleExecutable -string ${NAME} "${INFO_PLIST_PATH}"