pgsql: Preserve intermediate .c files in coverage mode - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Preserve intermediate .c files in coverage mode
Date
Msg-id E1TSU4H-0004K4-Vp@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Preserve intermediate .c files in coverage mode
List pgsql-committers
Preserve intermediate .c files in coverage mode

The introduction of the .y -> .c pattern rule causes some .c files such
as bootparse.c to be considered intermediate files in the .y -> .c -> .o
rule chain, which make would automatically delete.  But in coverage
mode, the processing tools such as genhtml need those files, so mark
them as "precious" so that make preserves them.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/4af3dda13601d859a20425e3554533fde0549056

Modified Files
--------------
src/Makefile.global.in |    2 ++
1 files changed, 2 insertions(+), 0 deletions(-)


pgsql-committers by date:

Previous
From: Kevin Grittner
Date:
Subject: pgsql: Throw error if expiring tuple is again updated or deleted.
Next
From: Tom Lane
Date:
Subject: Re: pgsql: Preserve intermediate .c files in coverage mode