diff options
Diffstat (limited to 'recipes/libvpx.recipe')
-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 1e72e95c..cd6d63d4 100644 --- a/recipes/libvpx.recipe +++ b/recipes/libvpx.recipe @@ -90,7 +90,7 @@ class Recipe(recipe.Recipe): super(recipe.Recipe, self).configure() def install(self): - if self.config.target_platform == Platform.DARWIN: + if self.config.target_platform in [Platform.DARWIN, Platform.IOS]: for f in ['vpxenc', 'vpxdec', 'libvpx.a']: shell.touch(os.path.join(self.build_dir, f)) super(Recipe, self).install() |