pgsql: Prevent passing gmake's environment variables down through pg_re

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Prevent passing gmake's environment variables down through pg_re
Date: 2012-12-01 22:24:36
Message-ID: E1TevUC-00028w-8s@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Prevent passing gmake's environment variables down through pg_regress.

When we do "make install" to create a temp installation, we don't want
that instance of make to try to communicate with any instance of make
that might be calling us. This is known to cause problems if the
upper make has a -jN flag, and in principle could cause problems even
without that. Unset the relevant environment variables to prevent such
issues.

Andres Freund

Branch
------
master

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

Modified Files
--------------
src/test/regress/pg_regress.c | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tatsuo Ishii 2012-12-02 12:59:30 pgsql: Fix psql crash while parsing SQL file whose encoding is differen
Previous Message Tom Lane 2012-12-01 21:05:00 pgsql: Make sure sharedir/extension/ directory is created when needed.