]> granicus.if.org Git - postgresql/commitdiff
Prevent passing gmake's environment variables down through pg_regress.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 1 Dec 2012 22:23:55 +0000 (17:23 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 1 Dec 2012 22:23:55 +0000 (17:23 -0500)
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

src/test/regress/pg_regress.c

index 7d89318b270f7061953c0acbed95cc4e8b11ba7d..d991a5ccc7065abb0eb29fc199cb5cb1d3ef7ede 100644 (file)
@@ -782,6 +782,19 @@ initialize_environment(void)
                        doputenv("PGPORT", s);
                }
 
+               /*
+                * GNU make stores some flags in the MAKEFLAGS environment variable to
+                * pass arguments to its own children.  If we are invoked by make,
+                * that causes the make invoked by us to think its part of the make
+                * task invoking us, and so it tries to communicate with the toplevel
+                * make.  Which fails.
+                *
+                * Unset the variable to protect against such problems.  We also reset
+                * MAKELEVEL to be certain the child doesn't notice the make above us.
+                */
+               unsetenv("MAKEFLAGS");
+               unsetenv("MAKELEVEL");
+
                /*
                 * Adjust path variables to point into the temp-install tree
                 */