We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ba590 commit dca0a54Copy full SHA for dca0a54
src/tools/pgtest
@@ -8,7 +8,9 @@
8
# have enough kernel resources to run two postmasters or
9
# stop your main postmaster before running this script.
10
#
11
-# Use -n to prevent 'gmake clean'
+# Use -n to prevent 'make clean'
12
+
13
+MAKE="make"
14
15
[ ! -d src ] && echo "This must be run from the top of the PostgreSQL source tree" 1>&2 && exit 1
16
@@ -18,7 +20,7 @@ TMP="/tmp/$$"
18
20
19
21
[ "X$1" != "X-n" ] && PGCLEAN=clean
22
-(gmake $PGCLEAN check 2>&1; echo "$?" > $TMP/ret) |
23
+($MAKE $PGCLEAN check 2>&1; echo "$?" > $TMP/ret) |
24
(tee $TMP/0; exit `cat $TMP/ret`) &&
25
cat $TMP/0 |
26
# The following grep's have to be adjusted for your setup because
0 commit comments