Repository: incubator-hawq Updated Branches: refs/heads/HAWQ-1535 552413e28 -> 164dd9e24
HAWQ-1535. Link PXF jars only if pxf home is set Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/164dd9e2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/164dd9e2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/164dd9e2 Branch: refs/heads/HAWQ-1535 Commit: 164dd9e24d19f24c38777ce5ffb681033d9bddce Parents: 552413e Author: shivzone <[email protected]> Authored: Wed Oct 4 14:18:53 2017 -0700 Committer: shivzone <[email protected]> Committed: Wed Oct 4 14:18:53 2017 -0700 ---------------------------------------------------------------------- pxf/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/164dd9e2/pxf/Makefile ---------------------------------------------------------------------- diff --git a/pxf/Makefile b/pxf/Makefile index 92e11e7..1bd8002 100644 --- a/pxf/Makefile +++ b/pxf/Makefile @@ -93,11 +93,12 @@ tomcat: install: ./gradlew install $(BUILD_PARAMS) - # Create symlink for PXF jars +ifneq "$(PXF_HOME)" "" @pushd $(PXF_HOME)/lib && \ for X in pxf-*-[0-9]*.jar; do \ ln -sf $$X `echo $$X | sed -e 's/-[a-zA-Z0-9.]*.jar/.jar/'`; \ done && popd +endif bundle: ./gradlew bundle $(BUILD_PARAMS)
