aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRechi <Rechi@users.noreply.github.com>2019-04-13 17:58:07 +0200
committerRechi <Rechi@users.noreply.github.com>2019-04-13 17:58:07 +0200
commitac3b0582691afc534bd596b3ce2aa8833e070de9 (patch)
tree93acdd9d5cae7e0acc564e6cb4fa75cee9de2c5a
parentba9ecaed6fb275a1e30521c7106d0223dc081208 (diff)
[darwin][packaging] adjust minimum iOS version to 9.0 after 4020c8649d
-rw-r--r--tools/darwin/packaging/ios/mkdeb-ios.sh.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/darwin/packaging/ios/mkdeb-ios.sh.in b/tools/darwin/packaging/ios/mkdeb-ios.sh.in
index 663c5ccbbf..00e3363a24 100644
--- a/tools/darwin/packaging/ios/mkdeb-ios.sh.in
+++ b/tools/darwin/packaging/ios/mkdeb-ios.sh.in
@@ -83,16 +83,15 @@ mkdir -p $DIRNAME/$PACKAGE/DEBIAN
if $ARM64; then
echo "Package: $PACKAGE_ARM64" > $DIRNAME/$PACKAGE/DEBIAN/control
echo "Name: @APP_NAME@-iOS (64-bit)" >> $DIRNAME/$PACKAGE/DEBIAN/control
- echo "Depends: firmware (>= 7.0)" >> $DIRNAME/$PACKAGE/DEBIAN/control
echo "Pre-Depends: cy+cpu.arm64" >> $DIRNAME/$PACKAGE/DEBIAN/control
echo "Conflicts: $PACKAGE" >> $DIRNAME/$PACKAGE/DEBIAN/control
echo "Replaces: $PACKAGE" >> $DIRNAME/$PACKAGE/DEBIAN/control
else
echo "Package: $PACKAGE" > $DIRNAME/$PACKAGE/DEBIAN/control
echo "Name: @APP_NAME@-iOS" >> $DIRNAME/$PACKAGE/DEBIAN/control
- echo "Depends: firmware (>= 5.1)" >> $DIRNAME/$PACKAGE/DEBIAN/control
fi
echo "Priority: Extra" >> $DIRNAME/$PACKAGE/DEBIAN/control
+echo "Depends: firmware (>= 9.0)" >> $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