diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-07-31 10:27:19 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-08-05 09:17:33 +0200 |
commit | 63c5a63acac345cad3bbd53edb007042e5fc2a5c (patch) | |
tree | 7465e51d9c0a1bd61a682cf78e533eb67c2715a4 | |
parent | e60f2d7735040a1dd83a9477f328d763ac987625 (diff) | |
download | buildroot-63c5a63acac345cad3bbd53edb007042e5fc2a5c.tar.gz buildroot-63c5a63acac345cad3bbd53edb007042e5fc2a5c.zip |
gnupg: disable assembly optimization for coldfire
Fixes:
http://autobuild.buildroot.net/results/d25425cff055a14b9285cefb0775bc138eb2f914/
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/gnupg/gnupg.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/gnupg/gnupg.mk b/package/gnupg/gnupg.mk index 8893a1cc68..54f4d97365 100644 --- a/package/gnupg/gnupg.mk +++ b/package/gnupg/gnupg.mk @@ -13,6 +13,11 @@ GNUPG_DEPENDENCIES = zlib ncurses $(if $(BR2_PACKAGE_LIBICONV),libiconv) GNUPG_CONF_ENV = ac_cv_sys_symbol_underscore=no GNUPG_CONF_OPTS = --disable-rpath --enable-minimal --disable-regex +# gnupg doesn't support assembly for coldfire +ifeq ($(BR2_m68k_cf),y) +GNUPG_CONF_OPTS += --disable-asm +endif + ifeq ($(BR2_PACKAGE_BZIP2),y) GNUPG_CONF_OPTS += --enable-bzip2 GNUPG_DEPENDENCIES += bzip2 |