IMPALA-4647: fix full data load with ninja This issues is that MAKE_CMD wasn't exported, so testdata/bin/copy-udfs-udas.sh tried to use "make" despite Makefiles not being generated.
Testing: Was able to do a full data load locally after applying this fix. Change-Id: Iba00d0ffbb6a93f26f4e2d1d311167d5e4dfa99f Reviewed-on: http://gerrit.cloudera.org:8080/5476 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/26f0b461 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/26f0b461 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/26f0b461 Branch: refs/heads/master Commit: 26f0b4612c0d30e45a5850fdf576b4fc4ce86daf Parents: c40958f Author: Tim Armstrong <[email protected]> Authored: Mon Dec 12 10:18:11 2016 -0800 Committer: Internal Jenkins <[email protected]> Committed: Sat Dec 17 00:26:12 2016 +0000 ---------------------------------------------------------------------- buildall.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/26f0b461/buildall.sh ---------------------------------------------------------------------- diff --git a/buildall.sh b/buildall.sh index fc66acb..291f19e 100755 --- a/buildall.sh +++ b/buildall.sh @@ -59,7 +59,8 @@ CODE_COVERAGE=0 BUILD_ASAN=0 BUILD_FE_ONLY=0 BUILD_TIDY=0 -MAKE_CMD=make +# Export MAKE_CMD so it is visible in scripts that invoke make, e.g. copy-udfs-udas.sh +export MAKE_CMD=make LZO_CMAKE_ARGS= # Defaults that can be picked up from the environment, but are overridable through the
