From a21c65a5ac8579b7ad4ac701afad8ea85449ba67 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Tue, 9 Apr 2019 22:32:29 -0500 Subject: [PATCH] Makefile: Correct search for `cmake` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6fbae5f41..dedfec76c 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ all: .begin build/fish PHONY: .begin .begin: - @which ninja > /dev/null 2> /dev/null || \ + @which $(CMAKE) > /dev/null 2> /dev/null || \ (echo 'Please install CMake and then re-run the `make` command!' 1>&2 && false) build/fish: build/$(BUILDFILE)