From: Thomas Petazzoni Date: Tue, 21 Oct 2014 20:26:57 +0000 (+0200) Subject: nettle: use the BR2_ARM_CPU_ARM* options X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=461f08072f0ae06c98ae5e72ef2dbb266a2672f9;p=buildroot.git nettle: use the BR2_ARM_CPU_ARM* options Adjust the nettle package to use the BR2_ARM_CPU_ARM* option to disable the usage of assembly code on ARMv4 and ARMv5. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/package/nettle/nettle.mk b/package/nettle/nettle.mk index e73a718318..a25bb24322 100644 --- a/package/nettle/nettle.mk +++ b/package/nettle/nettle.mk @@ -15,7 +15,7 @@ NETTLE_LICENSE_FILES = COPYING.LIB NETTLE_CONF_OPTS = --disable-openssl # ARM assembly requires v6+ ISA -ifeq ($(BR2_arm920t)$(BR2_arm922t)$(BR2_arm926t)$(BR2_fa526)$(BR2_strongarm)$(BR2_xscale)$(BR2_iwmmxt),y) +ifeq ($(BR2_ARM_CPU_ARMV4)$(BR2_ARM_CPU_ARMV5),y) NETTLE_CONF_OPTS += --disable-assembler endif