summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2015-09-29 12:04:31 +0200
committerLukas Slebodnik <lslebodn@redhat.com>2015-09-30 14:56:44 +0200
commit09365a02c9ff68f16227b69a348511bb584060bc (patch)
tree7af434e4b49a8b31b3de69ad03c49d99a7ac0821
parent6491a24ebbfe32e33d5f1c0bad267f5103789832 (diff)
downloadsssd-09365a02c9ff68f16227b69a348511bb584060bc.tar.gz
sssd-09365a02c9ff68f16227b69a348511bb584060bc.tar.xz
sssd-09365a02c9ff68f16227b69a348511bb584060bc.zip
CI: Fix configure script arguments for CentOS
Resolves: https://fedorahosted.org/sssd/ticket/2807 Reviewed-by: Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com>
-rw-r--r--contrib/ci/configure.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/ci/configure.sh b/contrib/ci/configure.sh
index d68f33191..c850eb9ce 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"
)