pgsql: Unlink static libraries before rebuilding them.

From: Noah Misch <noah(at)leadboat(dot)com>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Unlink static libraries before rebuilding them.
Date: 2015-03-01 18:21:12
Message-ID: E1YS8UK-00059v-8t@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Unlink static libraries before rebuilding them.

When the library already exists in the build directory, "ar" preserves
members not named on its command line. This mattered when, for example,
a "configure" rerun dropped a file from $(LIBOBJS). libpgport carried
the obsolete member until "make clean". Back-patch to 9.0 (all
supported versions).

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/424793fa5dc631254f69d5ee8d7d7d6de2976f60

Modified Files
--------------
src/Makefile.shlib | 3 +++
src/common/Makefile | 2 ++
src/port/Makefile | 2 ++
3 files changed, 7 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Noah Misch 2015-03-01 18:42:17 pgsql: Add transform functions for AT TIME ZONE.
Previous Message Tom Lane 2015-03-01 17:31:39 pgsql: Move memory context callback declarations into palloc.h.