diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2014-12-24 10:31:36 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2014-12-24 10:31:36 -0500 |
commit | 3f37b6c3166b2dc1956de8b0fb046ea6e7320d52 (patch) | |
tree | 34971832e95e32d23c9e40f4527e59dd94ae61dd /src | |
parent | 83bcc70459c596ceb9a90e96f011d24b88d93a85 (diff) | |
download | postgresql-3f37b6c3166b2dc1956de8b0fb046ea6e7320d52.tar.gz postgresql-3f37b6c3166b2dc1956de8b0fb046ea6e7320d52.zip |
Fix installcheck case for tap tests
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index a77b5f17442..7c39d827246 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -317,7 +317,7 @@ endef ifeq ($(enable_tap_tests),yes) define prove_installcheck -cd $(srcdir) && TESTDIR='$(CURDIR)' PATH="$(bindir):$$PATH" PGPORT='6$(DEF_PGPORT)' $(PROVE) $(PG_PROVE_FLAGS) $(PROVE_FLAGS) t/*.pl +cd $(srcdir) && TESTDIR='$(CURDIR)' PATH="$(bindir):$$PATH" PGPORT='6$(DEF_PGPORT)' top_builddir='$(CURDIR)/$(top_builddir)' $(PROVE) $(PG_PROVE_FLAGS) $(PROVE_FLAGS) t/*.pl endef define prove_check |