You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by ta...@apache.org on 2016/04/12 23:19:04 UTC

[30/50] incubator-impala git commit: Disable Kudu on SLES and Debian

Disable Kudu on SLES and Debian

Kudu won't work on these platforms yet.

Change-Id: I38bf6b803b3afb80aa1011522d21f0fa65bebe87
Reviewed-on: http://gerrit.cloudera.org:8080/2718
Reviewed-by: Tim Armstrong <ta...@cloudera.com>
Tested-by: Internal Jenkins


Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/5703f4e0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/5703f4e0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/5703f4e0

Branch: refs/heads/master
Commit: 5703f4e0c6916fbd474f72e4a0ecb011fc5e0927
Parents: 449901f
Author: casey <ca...@cloudera.com>
Authored: Tue Apr 5 10:43:54 2016 -0700
Committer: Internal Jenkins <cl...@gerrit.cloudera.org>
Committed: Tue Apr 5 22:25:05 2016 +0000

----------------------------------------------------------------------
 bin/impala-config.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/5703f4e0/bin/impala-config.sh
----------------------------------------------------------------------
diff --git a/bin/impala-config.sh b/bin/impala-config.sh
index d8b1dde..d21b153 100755
--- a/bin/impala-config.sh
+++ b/bin/impala-config.sh
@@ -107,7 +107,7 @@ if [[ -z $KUDU_BUILD_DIR ]]; then
     DISTRO_VERSION=$(tr -d ' \n' <<< "$DISTRO_VERSION" | cut -d. -f1 | tr "A-Z" "a-z")
     case "$DISTRO_VERSION" in
       # "enterprise" is Oracle
-      centos5 | debian6 | enterprise*5 | redhat*5 | suse*11 | ubuntu*12)
+      centos5 | debian* | enterprise*5 | redhat*5 | suse* | ubuntu*12)
           KUDU_IS_SUPPORTED=false;;
     esac
   fi