From 0a924a775aa217dfb05396b00abdebd7246e11e6 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 22 Jul 2018 23:39:26 +0900 Subject: [PATCH] meson: check the existence of ninja.build for fuzzer tests --- tools/meson-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/meson-build.sh b/tools/meson-build.sh index 304a7556763..317dad932d9 100755 --- a/tools/meson-build.sh +++ b/tools/meson-build.sh @@ -6,7 +6,7 @@ dst="$2" target="$3" options="$4" -[ -d "$dst" ] || meson "$src" "$dst" $options +[ -f "$dst/ninja.build" ] || meson "$src" "$dst" $options # Locate ninja binary, on CentOS 7 it is called ninja-build, so # use that name if available. -- 2.39.2