hostcc/hostcxx: fix noccache variant setting
The current code accidentally sets up HOSTCC_NOCCACHE and HOSTCXX_NOCCACHE only when the respective HOSTCC or HOSTCXX values are not set. So if you do something like: make HOSTCC=gcc menuconfig The build fails because HOSTCC_NOCCACHE is not set anywhere. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
5d6ff452ad
commit
0df02e1233
4
Makefile
4
Makefile
@ -126,13 +126,13 @@ endif
|
|||||||
ifndef HOSTCC
|
ifndef HOSTCC
|
||||||
HOSTCC:=gcc
|
HOSTCC:=gcc
|
||||||
HOSTCC:=$(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
|
HOSTCC:=$(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
|
||||||
HOSTCC_NOCCACHE:=$(HOSTCC)
|
|
||||||
endif
|
endif
|
||||||
|
HOSTCC_NOCCACHE:=$(HOSTCC)
|
||||||
ifndef HOSTCXX
|
ifndef HOSTCXX
|
||||||
HOSTCXX:=g++
|
HOSTCXX:=g++
|
||||||
HOSTCXX:=$(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
|
HOSTCXX:=$(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
|
||||||
HOSTCXX_NOCCACHE:=$(HOSTCXX)
|
|
||||||
endif
|
endif
|
||||||
|
HOSTCXX_NOCCACHE:=$(HOSTCXX)
|
||||||
ifndef HOSTFC
|
ifndef HOSTFC
|
||||||
HOSTFC:=gfortran
|
HOSTFC:=gfortran
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user