From a152692867e79346f472a6bcba86e08b6058eb2f Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Tue, 11 Feb 2014 13:21:08 +0100 Subject: libgcrypt: fix build in Android x86 https://bugzilla.gnome.org/show_bug.cgi?id=724050 --- recipes/libgcrypt/libgcrypt.recipe | 3 +++ 1 file changed, 3 insertions(+) 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' -- cgit v1.2.3