diff options
author | Jan Schmidt <jan@centricular.com> | 2017-04-20 20:24:43 +1000 |
---|---|---|
committer | Jan Schmidt <jan@centricular.com> | 2017-04-20 20:24:43 +1000 |
commit | 98f20199666ea9dacc4aa4b9d6a5258f18598597 (patch) | |
tree | e4a8a40f195a8f1ba977e71a7d8d31344b94d7bf | |
parent | 24c0da9daa85bb8b96a263cb064054250bd89ff1 (diff) |
x264: Remove custom --host tuple calculation
It breaks the iOS, android and mingw builds and seems to
have always been previously overridden anyways
-rw-r--r-- | recipes/x264.recipe | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/recipes/x264.recipe b/recipes/x264.recipe index 681e499f..04e603f3 100644 --- a/recipes/x264.recipe +++ b/recipes/x264.recipe @@ -34,7 +34,6 @@ class Recipe(recipe.Recipe): enable_asm = False if self.config.target_platform == Platform.WINDOWS: self.configure_options += ' --enable-win32thread' - self.configure_options += ' --host=%s-pc-%s' % (arch, self.config.target_platform) if self.config.target_arch == Architecture.ARM: # FIXME : Is disabling asm on ARM (< v7) still needed ? enable_asm = False |