mirror of
https://github.com/limine-bootloader/limine
synced 2025-01-06 04:42:16 +03:00
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
Block a user