From 9b8e82c6cf87487380032f41659c12e77681fbd5 Mon Sep 17 00:00:00 2001 From: anastasia Date: Mon, 7 Jun 2021 12:18:23 +0300 Subject: [PATCH] Fix makefile for out-of-tree compiling of contrib/zenith --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c5f152042b..7b6d101649 100644 --- a/Makefile +++ b/Makefile @@ -38,8 +38,7 @@ postgres: postgres-configure +@echo "Compiling PostgreSQL" $(MAKE) -C tmp_install/build MAKELEVEL=0 install +@echo "Compiling contrib/zenith" - (cd vendor/postgres/contrib/zenith && \ - $(MAKE) PG_CONFIG=$(abspath tmp_install)/bin/pg_config install USE_PGXS=1) + $(MAKE) -C tmp_install/build/contrib/zenith install postgres-clean: $(MAKE) -C tmp_install/build MAKELEVEL=0 clean