Skip to content

Commit

Permalink
do_cmake.sh: disable amqp and rdma on RHEL/CentOS 8
Browse files Browse the repository at this point in the history
RHEL/CentOS 8 does not offer librabbitmq-devel, libibverbs-devel and
librdmacm-devel at this moment. so disable these features now.

Signed-off-by: Kefu Chai <kchai@redhat.com>
  • Loading branch information
tchaikov committed Sep 28, 2019
1 parent 612376a commit a118ba0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions do_cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ if [ -r /etc/os-release ]; then
MAJOR_VER=$(echo "$VERSION_ID" | sed -e 's/\..*$//')
if [ "$MAJOR_VER" -ge "8" ] ; then
PYBUILD="3.6"
ARGS+=" -DWITH_RADOSGW_AMQP_ENDPOINT=OFF"
ARGS+=" -DWITH_RDMA=OFF"
fi
;;
opensuse*|suse|sles)
Expand Down

0 comments on commit a118ba0

Please sign in to comment.