pgsql: Use normal install program to install server headers.

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Use normal install program to install server headers.
Date: 2022-09-12 20:03:53
Message-ID: E1oXper-0003N9-6c@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use normal install program to install server headers.

Commit a7032690f9 replaced $(INSTALL) with plain "cp" for installing the
server header files. It sped up "make install" significantly, because
the old logic called $(INSTALL) separately for every header file,
whereas plain "cp" could copy all the files in one command. However, we
have long since made it a requirement that $(INSTALL) can also install
multiple files in one command, see commit f1c5247563. Switch back to
$(INSTALL).

Discussion: https://www.postgresql.org/message-id/200503252305.j2PN52m23610%40candle.pha.pa.us
Discussion: https://www.postgresql.org/message-id/2415283.1641852217%40sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/c0a1d7621b0a6086630919d91dc031eea72ab0b6

Modified Files
--------------
src/include/Makefile | 13 +++----------
1 file changed, 3 insertions(+), 10 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Daniel Gustafsson 2022-09-12 20:26:45 pgsql: doc: Fix link to FreeBSD documentation project
Previous Message Peter Eisentraut 2022-09-12 17:58:45 pgsql: Revert "Convert *GetDatum() and DatumGet*() macros to inline fun