diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-02-21 18:41:32 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-02-21 18:52:07 +0200 |
commit | 7998e042677293ab4b68f3afc060273c7a095c6f (patch) | |
tree | bef4767b3e48b7f6269ab0d01e27ca80d34fb584 | |
parent | 93992a851bc9543f763d6f6fa85f992ab4681915 (diff) |
x264: Fix compilation on Android/AArch64
-rw-r--r-- | recipes/x264.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/x264.recipe b/recipes/x264.recipe index e1d8d6ea..5e3f5786 100644 --- a/recipes/x264.recipe +++ b/recipes/x264.recipe @@ -39,7 +39,7 @@ class Recipe(recipe.Recipe): if self.config.target_arch == Architecture.ARM: # FIXME : Is disabling asm on ARM (< v7) still needed ? enable_asm = False - if self.config.target_arch == Architecture.ARMv7: + elif Architecture.is_arm(self.config.target_arch): self.new_env = {'AS': os.environ.get('CC', '')} if self.config.target_platform == Platform.IOS: if Architecture.is_arm(self.config.target_arch): |