From e328c8d4c0d887be8235a0c45b4fbde7a91a8074 Mon Sep 17 00:00:00 2001 From: Jacob Champion Date: Tue, 29 Aug 2017 11:30:09 -0700 Subject: [PATCH] extensions: fail build if gpcloud doesn't compile/install The recipe didn't properly chain the $(MAKE) invocations; any failures when building or installing gpcloud were ignored. --- gpAux/extensions/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpAux/extensions/Makefile b/gpAux/extensions/Makefile index d1de83b841..4914d66d81 100644 --- a/gpAux/extensions/Makefile +++ b/gpAux/extensions/Makefile @@ -32,7 +32,7 @@ mapreduce: gpcloud: @if [ "$(enable_gpcloud)" = "yes" ]; then \ echo "gpcloud enabled"; \ - $(MAKE) -C gpcloud; \ + $(MAKE) -C gpcloud && \ $(MAKE) -C gpcloud/bin/gpcheckcloud; \ fi @@ -47,7 +47,7 @@ install: $(MAKE) -C gpmapreduce install; \ fi @if [ "$(enable_gpcloud)" = "yes" ]; then \ - $(MAKE) -C gpcloud install; \ + $(MAKE) -C gpcloud install && \ $(MAKE) -C gpcloud/bin/gpcheckcloud install; \ fi @if [ "$(with_pxf)" = "yes" ]; then \ -- GitLab