diff --git a/Makefile b/Makefile index 0911465fb8..60827d94fc 100644 --- a/Makefile +++ b/Makefile @@ -166,6 +166,8 @@ postgres-%: postgres-configure-% \ $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/amcheck install +@echo "Compiling test_decoding $*" $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/test_decoding install + +@echo "Compiling dblink $*" + $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/dblink install .PHONY: postgres-clean-% postgres-clean-%: diff --git a/build-tools.Dockerfile b/build-tools.Dockerfile index f97f04968e..3307fc39bb 100644 --- a/build-tools.Dockerfile +++ b/build-tools.Dockerfile @@ -144,6 +144,7 @@ RUN set -e \ openssh-client \ parallel \ pkg-config \ + postgresql-contrib \ unzip \ wget \ xz-utils \