From 09365a02c9ff68f16227b69a348511bb584060bc Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sep 30 2015 12:56:44 +0000 Subject: CI: Fix configure script arguments for CentOS Resolves: https://fedorahosted.org/sssd/ticket/2807 Reviewed-by: Nikolai Kondrashov --- diff --git a/contrib/ci/configure.sh b/contrib/ci/configure.sh index d68f331..c850eb9 100644 --- a/contrib/ci/configure.sh +++ b/contrib/ci/configure.sh @@ -31,7 +31,8 @@ declare -a CONFIGURE_ARG_LIST=( ) -if [[ "$DISTRO_BRANCH" == -redhat-redhatenterprise*-6.*- ]]; then +if [[ "$DISTRO_BRANCH" == -redhat-redhatenterprise*-6.*- || + "$DISTRO_BRANCH" == -redhat-centos-6.*- ]]; then CONFIGURE_ARG_LIST+=( "--disable-cifs-idmap-plugin" "--with-syslog=syslog" @@ -39,7 +40,8 @@ if [[ "$DISTRO_BRANCH" == -redhat-redhatenterprise*-6.*- ]]; then ) fi -if [[ "$DISTRO_BRANCH" == -redhat-redhatenterprise*-7.*- ]]; then +if [[ "$DISTRO_BRANCH" == -redhat-redhatenterprise*-7.*- || + "$DISTRO_BRANCH" == -redhat-centos-7.*- ]]; then CONFIGURE_ARG_LIST+=( "--without-python3-bindings" )