We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a203baf commit 6d08ea5Copy full SHA for 6d08ea5
.evergreen/find-cmake.sh
@@ -11,7 +11,7 @@ find_cmake ()
11
CMAKE="/Applications/Cmake.app/Contents/bin/cmake"
12
elif [ -f "/opt/cmake/bin/cmake" ]; then
13
CMAKE="/opt/cmake/bin/cmake"
14
- elif command -v cmake 2>/dev/null; then
+ elif [ -z "$IGNORE_SYSTEM_CMAKE" ] && command -v cmake 2>/dev/null; then
15
CMAKE=cmake
16
elif uname -a | grep -iq 'x86_64 GNU/Linux'; then
17
if [ -f "$(pwd)/cmake-3.11.0/bin/cmake" ]; then
0 commit comments