From e5064b894ca9c5ab1a2eb91b6c57388125e520f1 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 30 May 2019 23:43:31 +0800 Subject: [PATCH] qa/run-standalone.sh: s/Makefile/CMakeCache.txt/ as we could use a generator other than Make, for instance ninja. Signed-off-by: Kefu Chai --- qa/run-standalone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/run-standalone.sh b/qa/run-standalone.sh index 92cca83ce7f..9c264d5d0e4 100755 --- a/qa/run-standalone.sh +++ b/qa/run-standalone.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -if [ ! -e Makefile -o ! -d bin ]; then +if [ ! -e CMakeCache.txt -o ! -d bin ]; then echo 'run this from the build dir' exit 1 fi -- 2.39.5