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

@@ -171,9 +171,6 @@ RUN cd postgres && \
eval $CONFIGURE_CMD && \
make MAKELEVEL=0 -j $(getconf _NPROCESSORS_ONLN) -s install && \
make MAKELEVEL=0 -j $(getconf _NPROCESSORS_ONLN) -s -C contrib/ install && \
# Install headers
make MAKELEVEL=0 -j $(getconf _NPROCESSORS_ONLN) -s -C src/include install && \
make MAKELEVEL=0 -j $(getconf _NPROCESSORS_ONLN) -s -C src/interfaces/libpq install && \
# Enable some of contrib extensions
echo 'trusted = true' >> /usr/local/pgsql/share/extension/autoinc.control && \
echo 'trusted = true' >> /usr/local/pgsql/share/extension/dblink.control && \