diff options
author | Edward Hervey <bilboed@bilboed.com> | 2014-03-28 10:20:10 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2014-03-28 10:20:10 +0100 |
commit | 45b0ccc8c900d9541c3fdfe4452a290d57c76427 (patch) | |
tree | 0939fb2962bc3f8e0081e83855609f925c37bc91 /recipes | |
parent | 23ee9646c9aff64776518cedb26a017052f779dd (diff) |
Add support for ios 7.1
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/libvpx.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libvpx.recipe b/recipes/libvpx.recipe index b9b0fed0..506db868 100644 --- a/recipes/libvpx.recipe +++ b/recipes/libvpx.recipe @@ -54,7 +54,7 @@ class Recipe(recipe.Recipe): if self.config.target_arch == Architecture.PPC: platform = 'darwin9' elif self.config.target_platform == Platform.IOS: - if self.config.target_distro_version == DistroVersion.IOS_7_0: + if self.config.target_distro_version in [DistroVersion.IOS_7_0, DistroVersion.IOS_7_1]: platform = 'ios7' else: platform = 'ios6' |