This is an automated email from the ASF dual-hosted git repository. michaelsmith pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 2688e30ae51d90de6d9e061b75a2f7bc4af24892 Author: Michael Smith <[email protected]> AuthorDate: Wed Nov 5 13:43:14 2025 -0800 IMPALA-14532: Fix SKIP_TOOLCHAIN_BOOTSTRAP Fixes 'NATIVE_TOOLCHAIN_HOME: unbound variable' error when setting 'SKIP_TOOLCHAIN_BOOTSTRAP=true'. Change-Id: I6562d49114590d89d2f43a4c23bba4a65e8abd74 Reviewed-on: http://gerrit.cloudera.org:8080/23640 Reviewed-by: Riza Suminto <[email protected]> Tested-by: Michael Smith <[email protected]> --- buildall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildall.sh b/buildall.sh index f06c043b0..211b93de7 100755 --- a/buildall.sh +++ b/buildall.sh @@ -424,7 +424,7 @@ bootstrap_dependencies() { # Populate necessary thirdparty components unless it's set to be skipped. if [[ "${SKIP_TOOLCHAIN_BOOTSTRAP}" = true ]]; then - if ! [ -z "${NATIVE_TOOLCHAIN_HOME}" ]; then + if ! [ -z "${NATIVE_TOOLCHAIN_HOME-}" ]; then if ! [ -d "${NATIVE_TOOLCHAIN_HOME}" ]; then mkdir -p "${NATIVE_TOOLCHAIN_HOME}" pushd "${NATIVE_TOOLCHAIN_HOME}"
