소스 검색

binutils: fix typo for detecting if BINUTILS_NO_MPFR is not set

Make the ifndef check the actual variable, typo bug.
Hans-Christian Egtvedt 16 년 전
부모
커밋
c7d2e4b0b3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      toolchain/binutils/binutils.mk

+ 1 - 1
toolchain/binutils/binutils.mk

@@ -54,7 +54,7 @@ ifeq ($(findstring x4.0,x$(GCC_VERSION)),x4.0)
 BINUTILS_NO_MPFR:=y
 endif
 
-ifndef BINUTILS_NO_MPFR
+ifndef $(BINUTILS_NO_MPFR)
 BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_SHREXT) \
 	$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_SHREXT)