summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2014-02-11 13:21:08 +0100
committerAndoni Morales Alastruey <ylatuya@gmail.com>2014-02-11 13:47:35 +0100
commita152692867e79346f472a6bcba86e08b6058eb2f (patch)
tree1c3a4c2f24d621997952b8675fb99e6ec9594352
parent4fdb9191e8b349a277b9b6a5ae66fddb6c7fdd90 (diff)
libgcrypt: fix build in Android x86
https://bugzilla.gnome.org/show_bug.cgi?id=724050
-rw-r--r--recipes/libgcrypt/libgcrypt.recipe3
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes/libgcrypt/libgcrypt.recipe b/recipes/libgcrypt/libgcrypt.recipe
index 81f5c108..f9fc780b 100644
--- a/recipes/libgcrypt/libgcrypt.recipe
+++ b/recipes/libgcrypt/libgcrypt.recipe
@@ -25,3 +25,6 @@ class Recipe(recipe.Recipe):
elif self.config.target_platform in [Platform.DARWIN]:
if self.config.target_arch == Architecture.X86_64:
self.configure_options += ' --disable-asm'
+ elif self.config.target_platform == Platform.ANDROID:
+ if self.config.target_arch == Architecture.X86:
+ self.configure_options += ' --disable-asm'