diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-09-22 17:18:14 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-09-22 17:18:14 +0300 |
commit | 00017e0a71aa3b8995d73faa3d7c9d712d9aafc4 (patch) | |
tree | 9ea4f1ba6f632b15283459560334109707e8a6ec /recipes/libdv.recipe | |
parent | 4242f1c9c5615d3374f684d5a5dc5f73e1b2763a (diff) |
libdv: Fix build on iOS/x86-64
Diffstat (limited to 'recipes/libdv.recipe')
-rw-r--r-- | recipes/libdv.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libdv.recipe b/recipes/libdv.recipe index c3e610e4..9e694dcf 100644 --- a/recipes/libdv.recipe +++ b/recipes/libdv.recipe @@ -23,5 +23,5 @@ class Recipe(recipe.Recipe): self.configure_options += ' --disable-asm' self.autoreconf = True elif self.config.target_platform == Platform.IOS: - if self.config.target_arch == Architecture.X86: + if self.config.target_arch in [Architecture.X86, Architecture.X86_64]: self.configure_options += ' --disable-asm' |