mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
binutils: fix typo for detecting if BINUTILS_NO_MPFR is not set
Make the ifndef check the actual variable, typo bug.
This commit is contained in:
@@ -54,7 +54,7 @@ ifeq ($(findstring x4.0,x$(GCC_VERSION)),x4.0)
|
|||||||
BINUTILS_NO_MPFR:=y
|
BINUTILS_NO_MPFR:=y
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef BINUTILS_NO_MPFR
|
ifndef $(BINUTILS_NO_MPFR)
|
||||||
BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_SHREXT) \
|
BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_SHREXT) \
|
||||||
$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_SHREXT)
|
$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_SHREXT)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user