mirror of
https://github.com/apache/impala.git
synced 2026-01-02 03:00:32 -05:00
This is the first step towards merging impala-kudu with trunk. These are basically just mechanical changes, pulling from trunk thirparty and just enough other changes to cmake build scripts or impala-config.sh to make it compile. NOTE: This patch is basically half-way between the impala-kudu build, that doesn't yet use the toolchain and the impala trunk build that does. As such this patch doesn't actually build stand-alone and serves merely the purpose of ommitting +/- 650K loc from the merge patch itself. Change-Id: Ic794988dcadee16e687a82745b417605772ff325
6 lines
147 B
Bash
Executable File
6 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
set -eu -o pipefail
|
|
PY_DIR=$(dirname "$0")/../infra/python
|
|
python "$PY_DIR/bootstrap_virtualenv.py"
|
|
exec "$PY_DIR/env/bin/python" "$@"
|