From dca0a54717a8372cc88b0c187965a1add19ec7e3 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 30 Dec 2011 16:29:25 -0500 Subject: [PATCH] Modify tools/pgtest to run the 'make' command from a variable, and default to 'make' rather than 'gmake' for the binary name. --- src/tools/pgtest | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/tools/pgtest b/src/tools/pgtest index c5356fced8..ffb528302d 100755 --- a/src/tools/pgtest +++ b/src/tools/pgtest @@ -8,7 +8,9 @@ # have enough kernel resources to run two postmasters or # stop your main postmaster before running this script. # -# Use -n to prevent 'gmake clean' +# Use -n to prevent 'make clean' + +MAKE="make" [ ! -d src ] && echo "This must be run from the top of the PostgreSQL source tree" 1>&2 && exit 1 @@ -18,7 +20,7 @@ TMP="/tmp/$$" [ "X$1" != "X-n" ] && PGCLEAN=clean -(gmake $PGCLEAN check 2>&1; echo "$?" > $TMP/ret) | +($MAKE $PGCLEAN check 2>&1; echo "$?" > $TMP/ret) | (tee $TMP/0; exit `cat $TMP/ret`) && cat $TMP/0 | # The following grep's have to be adjusted for your setup because