diff options
author | Noah Misch <noah@leadboat.com> | 2020-05-25 16:21:04 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2020-05-25 16:21:07 -0700 |
commit | adc4682efbac9ec2c48843f9ef9bc61f14c3e39f (patch) | |
tree | 4254f005544ac6dabcae8a744014267471f0cf8b | |
parent | 8fdde45e32e486903d6866a4b0a761f418463493 (diff) | |
download | postgresql-adc4682efbac9ec2c48843f9ef9bc61f14c3e39f.tar.gz postgresql-adc4682efbac9ec2c48843f9ef9bc61f14c3e39f.zip |
Add a temp-install prerequisite to top-level "check-tests".
The target failed, tested $PATH binaries, or tested a stale temporary
installation. Commit c66b438db62748000700c9b90b585e756dd54141 missed
this. Back-patch to 9.5 (all supported versions).
-rw-r--r-- | GNUmakefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in index 6242ece2492..d7579c93a54 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -63,6 +63,7 @@ distclean maintainer-clean: @rm -rf autom4te.cache/ rm -f config.cache config.log config.status GNUmakefile +check-tests: | temp-install check check-tests installcheck installcheck-parallel installcheck-tests: CHECKPREP_TOP=src/test/regress check check-tests installcheck installcheck-parallel installcheck-tests: submake-generated-headers $(MAKE) -C src/test/regress $@ |