From 4ea4ddc482346b2e63c6f1f0185d692739464736 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 9 Oct 2019 12:26:06 +0800 Subject: [PATCH] do_cmake.sh: remove -DCMAKE_BUILD_TYPE=Debug from cmake options so we can use do_cmake.sh for building release builds, which are required for performance tests. Signed-off-by: Kefu Chai --- do_cmake.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/do_cmake.sh b/do_cmake.sh index 8c15d970242..edded7a8e70 100755 --- a/do_cmake.sh +++ b/do_cmake.sh @@ -56,7 +56,7 @@ if type cmake3 > /dev/null 2>&1 ; then else CMAKE=cmake fi -${CMAKE} -DCMAKE_BUILD_TYPE=Debug $ARGS "$@" .. || exit 1 +${CMAKE} $ARGS "$@" .. || exit 1 # minimal config to find plugins cat < ceph.conf -- 2.39.5