1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-03-20 08:18:29 +00:00

Fixes missing quoting for sh -c

This commit is contained in:
Nick Briggs
2026-03-19 12:33:02 -07:00
parent ee21e482a7
commit 519c13891b

View File

@@ -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