From eec4b399b5a1b2c1c3245dc99a341bc2c74c02fc Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sat, 30 Jun 2018 20:23:23 -0500 Subject: [PATCH] Fix accidental recursive invocation of `make` under BSD The backticks in the cmake not installed error message were not escaped, leading to accidental recursive invocation of `make`. --- BSDmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BSDmakefile b/BSDmakefile index 56a65bd97..25c23e754 100644 --- a/BSDmakefile +++ b/BSDmakefile @@ -4,7 +4,7 @@ .BEGIN: # test for cmake, which is the only requirement to be able to run this Makefile # cmake will perform the remaining dependency tests on its own - @which cmake >/dev/null 2>/dev/null || (echo "Please install cmake and then re-run the `make` command!" 1>&2 && false) + @which cmake >/dev/null 2>/dev/null || (echo 'Please install cmake and then re-run the `make` command!' 1>&2 && false) # Use ninja, if it is installed _GENERATOR!=which ninja 2>/dev/null >/dev/null && echo Ninja || echo "'Unix Makefiles'"