From de8fdb791d4f37d0b3e750af7e4b9335e5668135 Mon Sep 17 00:00:00 2001 From: reshke Date: Wed, 3 Jun 2026 18:35:11 +0000 Subject: [PATCH] Add zstd to makefile routing --- gpcontrib/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gpcontrib/Makefile b/gpcontrib/Makefile index 801f3be1b70..7a51cc5df6c 100644 --- a/gpcontrib/Makefile +++ b/gpcontrib/Makefile @@ -85,12 +85,16 @@ install: @if [ "$(enable_orafce)" = "yes" ]; then \ $(MAKE) -C orafce NO_PGXS=true install; \ fi + @if [ "$(with_zstd)" = "yes" ]; then \ + $(MAKE) -C zstd install; \ + fi clean: if [ "$(enable_mapreduce)" = "yes" ]; then $(MAKE) -C gpmapreduce clean; fi if [ "$(enable_gpcloud)" = "yes" ]; then $(MAKE) -C gpcloud cleanall; fi if [ "$(enable_pxf)" = "yes" ]; then $(MAKE) -C pxf_fdw clean; fi if [ "${enable_orafce}" = "yes" ]; then $(MAKE) -C orafce NO_PGXS=true clean; fi + if [ "$(with_zstd)" = "yes" ]; then $(MAKE) -C zstd clean; fi distclean: