Repository: incubator-impala Updated Branches: refs/heads/master d3494d8e0 -> 33a35ea4f
Revert "Use impala-python when building shell tarball" This reverts commit 34bc6a72dbbb4fd00939c3177da4b8e9f525898b. This change causes the impala-shell to segfault when run on CentOS 5.10 using python 2.4. We maintain python 2.4 compatibility, so reverting the change to build with 2.6. Change-Id: I32f425c703a164279ea5b3268c3512fa980d39d9 Reviewed-on: http://gerrit.cloudera.org:8080/4176 Reviewed-by: Tim Armstrong <[email protected]> Reviewed-by: Alex Behm <[email protected]> Reviewed-by: Matthew Jacobs <[email protected]> Tested-by: Tim Armstrong <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/33a35ea4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/33a35ea4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/33a35ea4 Branch: refs/heads/master Commit: 33a35ea4f82beffa4663b98b6abb8252a126fa13 Parents: d3494d8 Author: Harrison Sheinblatt <[email protected]> Authored: Tue Aug 30 17:48:41 2016 -0700 Committer: Tim Armstrong <[email protected]> Committed: Wed Aug 31 01:35:02 2016 +0000 ---------------------------------------------------------------------- shell/make_shell_tarball.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/33a35ea4/shell/make_shell_tarball.sh ---------------------------------------------------------------------- diff --git a/shell/make_shell_tarball.sh b/shell/make_shell_tarball.sh index 3af7b9b..637fa7d 100755 --- a/shell/make_shell_tarball.sh +++ b/shell/make_shell_tarball.sh @@ -93,7 +93,7 @@ for MODULE in ${SHELL_HOME}/ext-py/*; do rm -rf dist 2>&1 > /dev/null rm -rf build 2>&1 > /dev/null echo "Creating an egg for ${MODULE}" - impala-python setup.py -q bdist_egg clean + python setup.py -q bdist_egg clean cp dist/*.egg ${TARBALL_ROOT}/ext-py popd 2>&1 > /dev/null done
