rgw/pubsub: disable kafka when building on ubuntu xenial via

"run-make-check.sh"

Signed-off-by: Yuval Lifshitz <yuvalif@yahoo.com>
This commit is contained in:
Yuval Lifshitz 2019-11-19 10:11:19 +02:00
parent 354d775e04
commit 12927eda4a

View File

@ -41,6 +41,11 @@ function detect_ceph_dev_pkgs() {
else
cmake_opts+=" -DBOOST_J=$(get_processors)"
fi
source /etc/os-release
if [[ "$ID" == "ubuntu" ]] && [[ "$VERSION" =~ .*Xenial*. ]]; then
cmake_opts+=" -DWITH_RADOSGW_KAFKA_ENDPOINT=NO"
fi
echo "$cmake_opts"
}