Remove unnecessary separate installation of libpq (#12287)

`make install` compiles and installs libpq. Remove redundant separate
step to compile and install it.
This commit is contained in:
Heikki Linnakangas
2025-06-25 13:47:56 +03:00
committed by GitHub
parent a2d623696c
commit 7c4c36f5ac
2 changed files with 0 additions and 5 deletions

View File

@@ -159,8 +159,6 @@ postgres-%: postgres-configure-% \
postgres-headers-% # to prevent `make install` conflicts with neon's `postgres-headers`
+@echo "Compiling PostgreSQL $*"
$(MAKE) -C $(BUILD_DIR)/$* MAKELEVEL=0 install
+@echo "Compiling libpq $*"
$(MAKE) -C $(BUILD_DIR)/$*/src/interfaces/libpq install
+@echo "Compiling pg_prewarm $*"
$(MAKE) -C $(BUILD_DIR)/$*/contrib/pg_prewarm install
+@echo "Compiling pg_buffercache $*"