From 27c5db998cba4bc76b5c9dcf71120181cb813886 Mon Sep 17 00:00:00 2001 From: Clemens Fruhwirth Date: Fri, 29 Jan 2021 19:57:37 +0100 Subject: Revert "build: replace which with Bash command built-in" This reverts commit c7aec47e5e3a3ff7b5fdaa11cd1e62cae6746acb. The original commit replaces 'which' with 'command'. Sadly most of them are not equivalent and for 'which -a', there is no easy replacements that would not reimplement PATH parsing logic. Hence revert. Keeping a dependency on which is absolutely fine. Signed-off-by: Clemens Fruhwirth (cherry picked from commit 1f5e7224868109a170a9248d18f8d2b6124e9c5a) --- include/cmake.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/cmake.mk') diff --git a/include/cmake.mk b/include/cmake.mk index de8022ca57..96c4d7df34 100644 --- a/include/cmake.mk +++ b/include/cmake.mk @@ -15,7 +15,7 @@ MAKE_PATH = $(firstword $(CMAKE_BINARY_SUBDIR) .) ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) cmake_tool=$(TOOLCHAIN_DIR)/bin/$(1) else - cmake_tool=$(shell command -v $(1)) + cmake_tool=$(shell which $(1)) endif ifeq ($(CONFIG_CCACHE),) -- cgit v1.2.3