diff options
author | Kefu Chai <kchai@redhat.com> | 2019-10-09 06:26:06 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2019-10-09 06:26:17 +0200 |
commit | 4ea4ddc482346b2e63c6f1f0185d692739464736 (patch) | |
tree | 6bc052d81e71416862451857c6ce825a83504f5c /do_cmake.sh | |
parent | Merge PR #30788 into master (diff) | |
download | ceph-4ea4ddc482346b2e63c6f1f0185d692739464736.tar.xz ceph-4ea4ddc482346b2e63c6f1f0185d692739464736.zip |
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 <kchai@redhat.com>
Diffstat (limited to 'do_cmake.sh')
-rwxr-xr-x | do_cmake.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 <<EOF > ceph.conf |