diff options
author | Rechi <Rechi@users.noreply.github.com> | 2019-07-12 09:50:11 +0100 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2019-07-12 09:50:11 +0100 |
commit | 182055fb94f928c835e73e956183666877044f01 (patch) | |
tree | c3089e8f2cd1308db0c53f7cbbe05aa8d1cbe119 /tools/darwin | |
parent | c341779afb86cbb7e97b6352c41df1657b873398 (diff) |
[iOS] use CMAKE_XCODE_ATTRIBUTE_IPHONEOS_DEPLOYMENT_TARGET instead of hardcoded min version
Diffstat (limited to 'tools/darwin')
-rw-r--r-- | tools/darwin/packaging/ios/mkdeb-ios.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/darwin/packaging/ios/mkdeb-ios.sh.in b/tools/darwin/packaging/ios/mkdeb-ios.sh.in index f5e1ab337b..511c214604 100644 --- a/tools/darwin/packaging/ios/mkdeb-ios.sh.in +++ b/tools/darwin/packaging/ios/mkdeb-ios.sh.in @@ -84,7 +84,7 @@ else echo "Name: @APP_NAME@-iOS" >> $DIRNAME/$PACKAGE/DEBIAN/control fi echo "Priority: Extra" >> $DIRNAME/$PACKAGE/DEBIAN/control -echo "Depends: firmware (>= 9.0)" >> $DIRNAME/$PACKAGE/DEBIAN/control +echo "Depends: firmware (>= @CMAKE_XCODE_ATTRIBUTE_IPHONEOS_DEPLOYMENT_TARGET@)" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Version: $VERSION-$REVISION" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Architecture: iphoneos-arm" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Installed-Size: $SIZE" >> $DIRNAME/$PACKAGE/DEBIAN/control |