From 26f0b4612c0d30e45a5850fdf576b4fc4ce86daf Mon Sep 17 00:00:00 2001 From: Tim Armstrong Date: Mon, 12 Dec 2016 10:18:11 -0800 Subject: [PATCH] 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 Tested-by: Internal Jenkins --- buildall.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildall.sh b/buildall.sh index fc66acb64..291f19e4a 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