summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2021-05-12 22:04:26 +0300
committerMonty <monty@mariadb.org>2021-05-12 22:04:26 +0300
commitfed3dff433a4dcbbbf8e3e4b6dbdde393faeab18 (patch)
tree015c517c036dadb987be7da4a45b37044532b290
parentd6887aa1f6700e7dd4b24c567103003e673712f5 (diff)
downloadmariadb-git-10.5-monty.tar.gz
Fixed bug in BUILD/SETUP that disabled ccache10.5-monty
-rwxr-xr-xBUILD/SETUP.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh
index f820a9b1945..bc4c65d5f6b 100755
--- a/BUILD/SETUP.sh
+++ b/BUILD/SETUP.sh
@@ -276,7 +276,7 @@ then
CCACHE_GCOV_VERSION_ENABLED=1
fi
-if ccache -V > /dev/null 2>&1 && test "$CCACHE_GCOV_VERSION_ENABLED" = "1" && "$CC" = "gcc"
+if ccache -V > /dev/null 2>&1 && test "$CCACHE_GCOV_VERSION_ENABLED" = "1" && test "$CC" = "gcc"
then
if test -x /usr/lib64/ccache/gcc
then