From 519c13891be4e1be078830ed7745987186f2b79d Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Thu, 19 Mar 2026 12:33:02 -0700 Subject: [PATCH] Fixes missing quoting for sh -c --- bin/linux-compiler.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/linux-compiler.mk b/bin/linux-compiler.mk index 18202f5..7a181f5 100644 --- a/bin/linux-compiler.mk +++ b/bin/linux-compiler.mk @@ -4,8 +4,8 @@ # 2. If clang is installed use it. # 3. Use gcc -EXISTS_GCC := $(shell /bin/sh -c command -v gcc) -EXISTS_CLANG := $(shell /bin/sh -c command -v clang) +EXISTS_GCC := $(shell /bin/sh -c "command -v gcc") +EXISTS_CLANG := $(shell /bin/sh -c "command -v clang") ifeq ($(or $(EXISTS_GCC),$(EXISTS_CLANG)),) $(error "Cannot find compiler: neither gcc nor clang. Exiting.") endif