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:41:32 +0200 |
commit | fca97f5164088208fcf05555e56c677bd5dde0d7 (patch) | |
tree | f18f3be6798275604ea3dc7d64471eaca0bf37ed | |
parent | 9507cd7f35fd522fab271e34385ceff862157904 (diff) |
x264: Fix compilation on Android/AArch641.7.2
-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): |