Repository: incubator-impala Updated Branches: refs/heads/master 68e9eed81 -> 36b4ea6f6
Use impala-python when building shell tarball This is a minor build fix that allows buildall.sh to succeed on systems where setuptools isn't installed for system python. Change-Id: I33a24ea4f77e655acaa0de22211c9ef008f5e650 Reviewed-on: http://gerrit.cloudera.org:8080/3797 Reviewed-by: Tim Armstrong <[email protected]> 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/34bc6a72 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/34bc6a72 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/34bc6a72 Branch: refs/heads/master Commit: 34bc6a72dbbb4fd00939c3177da4b8e9f525898b Parents: 68e9eed Author: Tim Armstrong <[email protected]> Authored: Wed Jul 27 14:34:36 2016 -0700 Committer: Internal Jenkins <[email protected]> Committed: Thu Jul 28 21:33:41 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/34bc6a72/shell/make_shell_tarball.sh ---------------------------------------------------------------------- diff --git a/shell/make_shell_tarball.sh b/shell/make_shell_tarball.sh index 2fc2de9..c2bcb63 100755 --- a/shell/make_shell_tarball.sh +++ b/shell/make_shell_tarball.sh @@ -85,7 +85,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}" - python setup.py -q bdist_egg clean + impala-python setup.py -q bdist_egg clean cp dist/*.egg ${TARBALL_ROOT}/ext-py popd 2>&1 > /dev/null done
