build: Fix wrong variable used on 'which' invocation in decompressor Makefile
This commit is contained in:
parent
c3481e12cc
commit
1a7736b295
|
@ -12,7 +12,7 @@ TOOLCHAIN_OBJCOPY = $(TOOLCHAIN)-objcopy
|
|||
ifeq ($(shell which $(TOOLCHAIN_CC)), )
|
||||
TOOLCHAIN_CC := gcc
|
||||
endif
|
||||
ifeq ($(shell which $(OBJCOPY)), )
|
||||
ifeq ($(shell which $(TOOLCHAIN_OBJCOPY)), )
|
||||
TOOLCHAIN_OBJCOPY := objcopy
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue