package/gmp: guard riscv definition

In commit 30997eaa65438a2ce726ad8a204ac5a36363f5c8 a mistake
was made. Guard the definition correctly.

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
MyCruft
Waldemar Brodkorb 2023-08-24 07:02:26 +02:00 committed by Thomas Petazzoni
parent 9c61470c4b
commit 3f46db39e6
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ GMP_CONF_OPTS += --disable-assembly
endif
# GMP needs M extension for riscv assembly
ifeq ($(BR2_RISCV_ISA_CUSTOM_RVM),)
ifeq ($(BR2_riscv):$(BR2_RISCV_ISA_CUSTOM_RVM),y:)
GMP_CONF_OPTS += --disable-assembly
endif