diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-03-04 16:39:34 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-03-07 16:53:48 +0100 |
commit | dafea8db996ca2b08433377dd1277578068c3896 (patch) | |
tree | 3197d0fba5857b5a4f38b359ef565ff325d23ca5 /recipes/libvpx.recipe | |
parent | 425fd13b66b1704301dfb2b900cfd35f3e0e0417 (diff) |
libvpx: Fix merge step for ios
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() |