summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2015-04-29 20:34:22 -0400
committerPeter Eisentraut <peter_e@gmx.net>2015-04-29 20:34:22 -0400
commitdbf2ec1a1c053379e2f9a5913979a1ca4dccbd43 (patch)
tree994397e079f5a0c9f1bc75a78434c73a16fa38ea /GNUmakefile.in
parente0f26fc76532defd06caf79d711fa99cea83c532 (diff)
downloadpostgresql-dbf2ec1a1c053379e2f9a5913979a1ca4dccbd43.tar.gz
Fix parallel make risk with new check temp-install setup
The "check" target no longer needs to depend on "all", because it now runs "install" directly, which in turn depends on "all". Doing both will cause problems with parallel make, because two builds will run next to each other. Also remove the redirection of the temp-install output into a log file. This was appropriate when this was done from within pg_regress, but now it's just a regular make run, and especially with the above changes this will now take the place of running the "all" target before the test suites. problem report by Jeff Janes, patch in part by Michael Paquier
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r--GNUmakefile.in2
1 files changed, 0 insertions, 2 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in
index 361897a80b..ba39bf1330 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -62,8 +62,6 @@ distclean maintainer-clean:
# Garbage from autoconf:
@rm -rf autom4te.cache/
-check check-tests: all
-
check check-tests installcheck installcheck-parallel installcheck-tests:
$(MAKE) -C src/test/regress $@