mirror of
https://github.com/Interlisp/maiko.git
synced 2026-04-25 03:55:16 +00:00
Fixes missing quoting for sh -c
This commit is contained in:
@@ -4,8 +4,8 @@
|
|||||||
# 2. If clang is installed use it.
|
# 2. If clang is installed use it.
|
||||||
# 3. Use gcc
|
# 3. Use gcc
|
||||||
|
|
||||||
EXISTS_GCC := $(shell /bin/sh -c command -v gcc)
|
EXISTS_GCC := $(shell /bin/sh -c "command -v gcc")
|
||||||
EXISTS_CLANG := $(shell /bin/sh -c command -v clang)
|
EXISTS_CLANG := $(shell /bin/sh -c "command -v clang")
|
||||||
ifeq ($(or $(EXISTS_GCC),$(EXISTS_CLANG)),)
|
ifeq ($(or $(EXISTS_GCC),$(EXISTS_CLANG)),)
|
||||||
$(error "Cannot find compiler: neither gcc nor clang. Exiting.")
|
$(error "Cannot find compiler: neither gcc nor clang. Exiting.")
|
||||||
endif
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user