summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2021-08-15 12:00:36 -0400
committerAllen Winter <allen.winter@kdab.com>2021-08-15 12:00:36 -0400
commita2f3de26fa3c1e9fac74eb927ffe57ab02cb4855 (patch)
treeeb68bd2673bced210b6633080f8127a86c1dc41c /scripts
parent4971d94018b57fdfd442be7b4234a9b2861b8d64 (diff)
parent133b3e9189aa43e655b1056092b07e7ea8346838 (diff)
downloadlibical-git-a2f3de26fa3c1e9fac74eb927ffe57ab02cb4855.tar.gz
Merge branch '3.0'
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/buildtests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/buildtests.sh b/scripts/buildtests.sh
index d812aaf4..7ec7aa03 100755
--- a/scripts/buildtests.sh
+++ b/scripts/buildtests.sh
@@ -547,7 +547,7 @@ then
exit 1
fi
# read the min required CMake version from the top-level CMake file
- minCMakeVers=`grep -i cmake_minimum_required $TOP/CMakeLists.txt | grep VERSION | sed 's/^.*VERSION\s*//i' | cut -d. -f1-2 | sed 's/\s*).*$//'`
+ minCMakeVers=`grep -i cmake_minimum_required $TOP/CMakeLists.txt | grep VERSION | sed 's/^.*VERSION\s*//' | cut -d. -f1-2 | sed 's/\s*).*$//'`
# adjust PATH
X=`echo $minCMakeVers | cut -d. -f1`
Y=`echo $minCMakeVers | cut -d. -f2`
@@ -566,7 +566,7 @@ then
if ( test `cmake --version | head -1 | grep -c $minCMakeVers` -ne 1 )
then
echo "Not using cmake version $minCMakeVers"
- echo "Maybe you need to install it into /usr/local/opt/cmake-$minCMakeVers"
+ echo "Maybe you need to install it into /usr/local/opt/cmake-$minCMakeVers (or use the -m option)"
exit 1
fi
fi