>From af29741994e7ab5a69c5a272a685bf09d13eb367 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Tue, 29 Sep 2015 12:04:31 +0200 Subject: [PATCH] CI: Fix configure script arguments for CentOS Resolves: https://fedorahosted.org/sssd/ticket/2807 --- contrib/ci/configure.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/contrib/ci/configure.sh b/contrib/ci/configure.sh index d68f331913325463b698411efa61c2522f055ccf..c850eb9ce9a4228c1a89b8b2b49311e1c748b7de 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" ) -- 2.5.0