pgsql: Fix sporadic rebuilds for .pc files

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix sporadic rebuilds for .pc files
Date: 2013-04-13 02:50:13
Message-ID: E1UQqXd-0007bZ-DY@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix sporadic rebuilds for .pc files

The build of .pc (pkg-config) files depends on all makefiles in use, and
in dependency tracking mode, the previous coding ended up including
/dev/null as a makefile. Apparently, on some platforms the modification
time of /dev/null changes sporadically, and so the .pc files would end
up being rebuilt every so often. Fix that by changing the makefile code
to do without using /dev/null.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/ba66752d278818b6b8797aec2e36cccf727db055

Modified Files
--------------
src/Makefile.global.in | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2013-04-14 03:47:21 pgsql: pg_ctl: Add idempotent option
Previous Message Tom Lane 2013-04-12 23:25:54 pgsql: Clean up the mess around EXPLAIN and materialized views.